1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Zepler [3.9K]
3 years ago
12

For some transformation having kinetics that obey the Avrami equation (Equation 10.17), the parameter n is known to have a value

of 2.1. If, after 146 s, the reaction is 50% complete, how long (total time) will it take the transformation to go to 86% completion?
Engineering
1 answer:
OleMash [197]3 years ago
5 0

Answer:

t = 25.10 sec

Explanation:

we know that Avrami equation

Y = 1 - e^{-kt^n}

here Y is percentage of completion  of reaction = 50%

t  is duration of reaction = 146 sec

so,

0.50 = 1 - e^{-k^146^2.1}

0.50 = e^{-k306.6}

taking natural log on both side

ln(0.5) = -k(306.6)

k = 2.26\times 10^{-3}

for 86 % completion

0.86 = 1 - e^{-2.26\times 10^{-3} \times t^{2.1}}

e^{-2.26\times 10^{-3} \times t^{2.1}} = 0.14

-2.26\times 10^{-3} \times t^{2.1} = ln(0.14)

t^{2.1} = 869.96

t = 25.10 sec

You might be interested in
When an output gear is larger than the input gear the greater ratio is greater than 1 T or F​
bekas [8.4K]

Answer:

T

Explanation:

3 0
3 years ago
An article gave a scatter plot along with the least squares line of x = rainfall volume (m3) and y = runoff volume (m3) for a pa
kompoz [17]

Answer:

y = 0.834X - 1.58015

Slope = 0.8340 ; Intercept = - 1.5802

y = 40.9539

19.93

0.9765

Explanation:

X: Rainfall volume

6

12

14

16

23

30

40

52

55

67

72

81

96

112

127

Y : Runoff

4

10

13

14

15

25

27

48

38

46

53

72

82

99

100

The scatterplot shows a reasonable linear trend between the Rainfall volume and run off.

The estimated regression equation obtained using a linear regression calculator is :

y = 0.834X - 1.58015

y = Runoff ; x = Rainfall volume

Slope = 0.8340 ; Intercept = - 1.5802

Point estimate for Runoff, when, x = 51

y = 0.834X - 1.58015

y = 0.834(51) - 1.58015

y = 40.95385

y = 40.9539

d.)

Point estimate for standard deviation :

s = 5.145

σ = s * √n

σ = √15 * 5.145

= 19.93

e.)

r² = Coefficient of determination gives the proportion of explained variance in Runoff due to the regression line. From the model output, the r² value = 0.9765. Which means That about 97.65% Runoff is due to Rainfall volume.

7 0
3 years ago
Why not just put all the set up steps within each step? it is because we want to keep our code __ ? (3 letters)
andrezito [222]

Why not simply include each step's setup instructions within it? is it due to our desire to maintain DRY (Don't Repeat Yourself) code?

<h3>What is the purpose of unit testing?</h3>

Program testing is known as "unit testing" involves testing individual software components. When developing an application, unit testing is done on the software product. An individual component could be a technique or a specific function.

Unit testing's primary goal is to separate written code for testing to see if it functions as intended. Unit testing is a crucial stage in the development process because, when done properly, it can aid in finding early code issues that could be more challenging to identify in subsequent testing phases.

The core of the testing process consists of unit testing and functional testing. The primary distinction between the two is that during the development cycle, the developer conducts unit testing. The tester does functional testing at the system testing level.

To learn more about unit testing refers to:

brainly.com/question/22900395

#SPJ4

8 0
1 year ago
JAVA HADOOP MAPREDUCE
taurus [48]

Answer:

Explanation:

package PackageDemo;

import java.io.IOException;

import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.fs.Path;

import org.apache.hadoop.io.IntWritable;

import org.apache.hadoop.io.LongWritable;

import org.apache.hadoop.io.Text;

import org.apache.hadoop.mapreduce.Job;

import org.apache.hadoop.mapreduce.Mapper;

import org.apache.hadoop.mapreduce.Reducer;

import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;

import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;

import org.apache.hadoop.util.GenericOptionsParser;

public class WordCount {

public static void main(String [] args) throws Exception

{

Configuration c=new Configuration();

String[] files=new GenericOptionsParser(c,args).getRemainingArgs();

Path input=new Path(files[0]);

Path output=new Path(files[1]);

Job j=new Job(c,"wordcount");

j.setJarByClass(WordCount.class);

j.setMapperClass(MapForWordCount.class);

j.setReducerClass(ReduceForWordCount.class);

j.setOutputKeyClass(Text.class);

j.setOutputValueClass(IntWritable.class);

FileInputFormat.addInputPath(j, input);

FileOutputFormat.setOutputPath(j, output);

System.exit(j.waitForCompletion(true)?0:1);

}

public static class MapForWordCount extends Mapper<LongWritable, Text, Text, IntWritable>{

public void map(LongWritable key, Text value, Context con) throws IOException, InterruptedException

{

String line = value.toString();

String[] words=line.split(",");

for(String word: words )

{

Text outputKey = new Text(word.toUpperCase().trim());

IntWritable outputValue = new IntWritable(1);

con.write(outputKey, outputValue);

}

}

}

public static class ReduceForWordCount extends Reducer<Text, IntWritable, Text, IntWritable>

{

public void reduce(Text word, Iterable<IntWritable> values, Context con) throws IOException, InterruptedException

{

int sum = 0;

for(IntWritable value : values)

{

sum += value.get();

}

con.write(word, new IntWritable(sum));

}

}

}

3 0
3 years ago
A certain piece of property is assessed at $150,000. If the tax rate is $2.50 per $100, what is the tax on this property?
stiks02 [169]

Answer:

The tax on this property is 3750 dollars

Explanation:

Given

Tax on per $100 is $2.50

Tax on every $1 is \frac{2.5}{100} = 0.025 dollars

Tax on property of value $150,000 is

150,000 * 0.025 = 3750 dollars

The tax on this property is 3750 dollars

7 0
3 years ago
Other questions:
  • A 220-V electric heater has two heating coils that can be switched such that either coil can be used independently or the two ca
    15·1 answer
  • A preheater involves the use of condensing steam at 100o C on the inside of a bank of tubes to heat air that enters at I atm and
    14·1 answer
  • Realize the function f(a, b, c, d, e) = Σ m(6, 7, 9, 11, 12, 13, 16, 17, 18, 20, 21, 23, 25, 28)using a 16-to-1 MUX with control
    13·1 answer
  • What engine does chrysler 300c have?​
    15·1 answer
  • Yall pls help me out
    7·1 answer
  • TP-6 What should you do when fueling an outboard boat with a portable tank?
    12·1 answer
  • There is a black-box system (i.e we do not know the transfer function of the system). When we fed a step input into the system,
    9·1 answer
  • Technician A says that acid core solder should be used whenever aluminum wires are to be soldered.
    14·1 answer
  • The current flowing into the collector lead of a certain bipolar junction transistor (BJT) is measured to be 1 nA. If no charge
    14·1 answer
  • 9. A piece of Cherry wood is 5/4 x 4" X 4'<br> What is the length in inches?
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!