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
Zolol [24]
3 years ago
12

1. The equilibrium number of vacancies in Ni at 1123 K is 4.7x1022m-3. The atomic weight and density of Ni at 1123 K are 58.69 g

/mol and 8.8 g/cm3. What is the vacancy formation energy of Ni?
Engineering
1 answer:
Ahat [919]3 years ago
3 0

Answer:

vacancy formation energy of Ni is 1.400 eV

Explanation:

given data

number of vacancies in Ni = 4.7 x 10^{22}  m^{-3}

atomic weight = 58.69 g/mol

density = 8.8 g/cm³  

solution

we get here N that is

N  = \frac{N_A \times \rho}{A}   ...........1

N = \frac{6.023\times 10^{23} \times 8.8 \times 10^6}{58.69}

N = 9.030 \times 10^{28}  

and here no of vacancy will be

Nv = N \times e^{\frac{-Qv}{kT}}  .................2

put here value

4.7 \times 10^{22} = 9.030 \times 10^28 \times e^{\frac{-Qv}{8.62\times 10^{-5}\times 1123}}  

10^{-7} \times 5.20487 = e^{\frac{-Qv}{0.0968}}

take ln both side

ln (10^{-7} \times 5.20487 ) = ln (e^{\frac{-Qv}{0.0968}})

-14.468 = \frac{-Qv}{0.0968}  

Qv = 1.400 eV

so vacancy formation energy of Ni is 1.400 eV

You might be interested in
A driver is traveling at 90 km/h down a 3% grade on good, wet pavement. An accident
Paul [167]

Answer:

0.35

Explanation:

We resolve the component of the weight of the car along and perpendicular to the grade. We have mgsinФ and mgcosФ where Ф = angle of grade.

Now, the frictional force f = μN = μmgcosФ where μ = coefficient of friction

So, the net force along the grade is F = mgsinФ - μmgcosФ.

The work done by this force moving a distance, d along the grade is

W = (mgsinФ - μmgcosФ)d

This work equals the change in kinetic energy of the car. So ΔK = 1/2m(v₂² - v₁²) = W = (mgsinФ - μmgcosФ)d

1/2m(v₂² - v₁²) = (mgsinФ - μmgcosФ)d

1/2(v₂² - v₁²) = (gsinФ - μgcosФ)d

(v₂² - v₁²)/2d = (gsinФ - μgcosФ)

dividing through by gcosФ, we have

(v₂² - v₁²)/2dgcosФ = (gsinФ/gcosФ) - μgcosФ/gcosФ

(v₂² - v₁²)/2dgcosФ = tanФ -  μ

μ = tanФ - (v₂² - v₁²)/2dgcosФ

given that tanФ = 3% = 3/100 and 1 + tan²Ф = 1/cos²Ф, cosФ = 1/(√1 + tan²Ф) = 1/(√1 + (3/100)²) = 1/(√1 + (9/10000)) = 1/(√10000 + 9/10000) = 1/√(10009/10000) = 100/√10009 = 100/100.05 = 0.9995.

Also, given that v₁ = 90 km/h = 90 × 1000/3600 m/s = 25 m/s and v₂ = 45 km/h = 45 × 1000/3600 m/s = 12.5 m/s, d = 75 m and g = 9.8 m/s².

So, substituting the values of the variables into the equation, we have

μ = tanФ - (v₂² - v₁²)/2dgcosФ

μ = 3/100 - ((12.5 m/s)² - (25 m/s)²)/(2 × 75 m × 9.8 m/s² × 0.9995)

μ = 3/100 - ((156.25 m/s)² - (625 m/s)²)/1,469.265 m²/s²

μ = 3/100 - (-468.75 m²/s²)/1,469.265 m²/s²

μ = 3/100 + 468.75 m²/s²/1,469.265 m²/s²

μ = 0.03 + 0.32

μ = 0.35

So, theoretical friction  coefficient is 0.35

4 0
3 years ago
Your Java program will be reading input from a file name strInput.txt. Each record contains String firstname String lastName Str
stiks02 [169]

Answer:

The program requires that you have the specified input files and it reads from each file at a time and processes salary in digits, states the city, state and bonus with respective first and last name as requested in the question. Note that you must have access to the mentioned output files for the program to work properly. Below is the java version of the program.

import java.io.File;

import java.io.FileNotFoundException;

import java.io.PrintWriter;

import java.util.Scanner;

class Driver

{

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

{

Scanner sc = new Scanner(new File("strInput.txt"));

PrintWriter pd = new PrintWriter(new File("strOutputD"));

PrintWriter prf = new PrintWriter(new File("strOutputRF"));

String firstname = "", lastname = "", strSalary = "", status = "", cityState = "", city = "", state = "";

double salary = 0, bonus = 0;

int incorrectRecords = 0;

int dRecords = 0;

int fRecords = 0;

while(sc.hasNextLine())

{

firstname = sc.next();

lastname = sc.next();

strSalary = sc.next();

status = sc.next();

cityState = sc.next();

if(!status.equals("D") && !status.equals("F"))

{

System.out.println("Records is neither D nor F. Skipping this...");

incorrectRecords++;

continue;

}

else if(status.equals("D") || status.equals("F"))

{

char c = ' ';

int i = 0;

for(i=0; i<strSalary.length() && c != '.'; i++)

{

c = strSalary.charAt(i);

if(!Character.isDigit(c))

{

System.out.println("Char at position " + (i+1) + " in salary is not a digit");

incorrectRecords++;

continue;

}

}

if(c == '.')

{

if(i+1 == strSalary.length()-1)

{

if(!Character.isDigit(strSalary.charAt(i)))

{

System.out.println("Char at position " + (i+1) + " in salary is not a digit");

incorrectRecords++;

continue;

}

if(!Character.isDigit(strSalary.charAt(i+1)))

{

System.out.println("Char at position " + (i+1+1) + " in salary is not a digit");

incorrectRecords++;

continue;

}

}

else

{

System.out.println("Period is in the wrong position. Expected at " + (strSalary.length()-3) + " but found at " + (i+1));

continue;

}

}

city = cityState.split(",")[0];

state = cityState.split(",")[1];

salary = Double.parseDouble(strSalary);

if(status.equals("D"))

{

bonus = salary * 0.125;

dRecords++;

pd.write(firstname + " " + lastname + " " + status + " " + salary + " " + bonus + " " + city + " " + state);

}

else

{

bonus = salary * 0.18;

fRecords++;

prf.write(firstname + " " + lastname + " " + status + " " + salary + " " + bonus + " " + city + " " + state);

}

}

}

System.out.println("No of D records : " + dRecords);

System.out.println("No of F records : " + fRecords);

System.out.println("No of incorrect records : " + incorrectRecords);

}

}

6 0
3 years ago
Technician A says that a way to prevent galvanic corrosion is to duplicate the original installation method. Technician B says t
sertanlavr [38]

Answer:

Technician A

Explanation:

Galvanic corrosion is not on only one metal alone but caused when two metals are interacting. Thus, Duplicating the original installation method is a better option because re-using a coated bolt doesn't prevent galvanic corrosion because both materials must be coated and not just the bolt and in technician B's case he is coating just the bolt. Thus, technician B's method will not achieve prevention of galvanic corrosion but technician A's method will achieve it.

8 0
2 years ago
Rosita is planning an investigation to determine how a lifeboat's shape affects its
KiRa [710]
Yes! Is right, just did the work!
3 0
3 years ago
How are the accelerator and brake pedal positioned in relation to each other? A. The brake pedal is to the right of the accelera
Lunna [17]

Answer:B

Explanation:

7 0
3 years ago
Other questions:
  • Technician A says that when using an impact wrench to remove a bolt from the front of an engine's crankshaft, the crankshaft mus
    15·1 answer
  • Tranquilizing drugs that inhibit sympathetic nervous system activity often effectively reduce people's subjective experience of
    8·1 answer
  • 3–102 One of the common procedures in fitness programs is to determine the fat-to-muscle ratio of the body. This is based on the
    5·1 answer
  • A well penetrates an unconfined aquifer. Prior to pumping, the water level (head) is 25 meters. After a long period of pumping a
    14·1 answer
  • A non-entrepreneurship, work-based, agricultural type of SAE, in which a student learns and gains skills in a paid or unpaid pos
    15·1 answer
  • Create a Python program that will produce the following output:
    7·1 answer
  • What is a rivet and how do tehey work
    14·1 answer
  • If fog is so bad that I can’t see for short distance what should I do
    9·2 answers
  • A coil having a resistance of 10 ohms and an inductance of 4 H is switched across a 20W dc source. Calculate (a) time required b
    9·1 answer
  • Which of the following situations best describes student engaged in active learning
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!