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
RoseWind [281]
3 years ago
15

Miller Indices:

Engineering
1 answer:
svetlana [45]3 years ago
5 0

Answer:

A) The sketches for the required planes were drawn in the first attachment [1 2 1] and the second attachment [1 2 -4].

B) The closest distance between planes are d₁₂₁=a/√6 and d₁₂₋₄=a/√21 with  lattice constant a.

C) Five posible directions that electrons can move on the surface of a [1 0 0] silicon crystal are: |0 0 1|, |0 1 3|, |0 1 1|, |0 3 1| and |0 0 1|.

Compleated question:

1. Miller Indices:

a. Sketch (on separate plots) the (121) and (12-4) planes for a face centered cubic crystal structure.

b. What are the closest distances between planes (called d₁₂₁ and d₁₂₋₄)?

c. List five possible directions (using the Miller Indices) the electron can move on the surface of a (100) silicon crystal.

Explanation:

A)To draw a plane in a face centered cubic lattice, you have to follow these instructions:

1- the cube has 3 main directions called "a", "b" and "c" (as shown in the first attachment) and the planes has 3 main coeficients shown as [l m n]

2- The coordinates of that plane are written as: π:[1/a₀ 1/b₀ 1/c₀] (if one of the coordinates is 0, for example [1 1 0], c₀ is ∞, therefore that plane never cross the direction c).

3- Identify the points a₀, b₀, and c₀ at the plane that crosses this main directions and point them in the cubic cell.

4- Join the points.

<u>In this case, for [1 2 1]:</u>

l=1=1/a_0 \rightarrow a_0=1

m=2=2/b_0 \rightarrow b_0=0.5

n=1=1/c_0 \rightarrow c_0=1

<u>for </u>[1 2 \overline{4}]<u>:</u>

l=1=1/a_0 \rightarrow a_0=1

m=2=2/b_0 \rightarrow b_0=0.5

n=\overline{4}=-4/c_0 \rightarrow c_0=-0.25

B) The closest distance between planes with the same Miller indices can be calculated as:

With \pi:[l m n] ,the distance is d_{lmn}= \displaystyle \frac{a}{\sqrt{l^2+m^2+n^2}} with lattice constant a.

<u>In this case, for [1 2 1]:</u>

<u />d_{121}= \displaystyle \frac{a}{\sqrt{1^2+2^2+1^2}}=\frac{a}{\sqrt{6}}=0.41a<u />

<u>for </u>[1 2 \overline{4}]<u>:</u>

d_{12\overline{4}}= \displaystyle \frac{a}{\sqrt{1^2+2^2+(-4)^2}}=\frac{a}{\sqrt{21}}=0.22a

C) The possible directions that electrons can move on a surface of a crystallographic plane are the directions contain in that plane that point in the direction between nuclei. In a silicon crystal, an fcc structure, in the plane [1 0 0], we can point in the directions between the nuclei in the vertex (0 0 0) and e nuclei in each other vertex. Also, we can point in the direction between the nuclei in the vertex (0 0 0) and e nuclei in the center of the face of the adjacent crystals above and sideways. Therefore:

dir₁=|0 0 1|

dir₂=|0 0.5 1.5|≡|0 1 3|

dir₃=|0 1 1|

dir₄=|0 1.5 0.5|≡|0 3 1|

dir₅=|0 0 1|

You might be interested in
A hemispherical shell with an external diameter of 500 mm and a thickness of 20 mm is going to be made by casting, located entir
Olenka [21]

Solution :

Given :

External diameter of the hemispherical shell, D = 500 mm

Thickness, t = 20 mm

Internal diameter, d = D - 2t

                                 = 500 - 2(20)

                                 = 460 mm

So, internal radius, r = 230 mm

                                 = 0.23 m

Density of molten metal, ρ = $7.2 \ g/cm^3$

                                                  = $7200 \ kg/m^3$

The height of pouring cavity above parting surface is h = 300 mm

                                                                                                  = 0.3 m

So, the metallostatic thrust on the upper mold at the end of casting is :

$F=\rho g A h$

Area, A $=2 \pi r^2$

            $=2 \pi (0.23)^2$

            $=0.3324 \ m^2$

$F=\rho g A h$

   $=7200 \times 9.81 \times 0.3324 \times 0.3$

     = 7043.42 N

3 0
3 years ago
Write a program that prompts the user to enter time in 12-hour notation. The program then outputs the time in 24-hour notation.
Juliette [100K]

Answer:

THE CODE FOR THE PROGRAM IS GIVEN BELOW:

#include <iostream>

#include "ConvertTimeHeader.h"

using namespace std;

int main()

{

convertTime convert;

int hr, mn, sc = 0;

 

cout << "Please input hours in 12 hr notation: ";

cin >> hr;

cout << "Please input minutes: ";

cin >> mn;

cout << "Please input seconds: ";

cin >> sc;

 

convert.invalidHr(hr);

convert.invalidMin(mn);

convert.invalidSec(sc);

convert.printMilTime();

 

system("Pause");

 

return 0;  

 

}

#include <iostream>

#include "ConvertTimeHeader.h"

using namespace std;

int convertTime::invalidHr (int hour)

{

try{

 if (hour < 13 && hour > 0)

  {hour = hour + 12;

  return hour;}

 else{

 

  cin.clear();

  cin.ignore();

  cout << "Invalid input! Please input hour again in correct 12 hour format: ";

  cin >> hour;

  invalidHr(hour);

  throw 10;

 }

   

}

catch (int c) { cout << "Invalid hour input!";}

}

int convertTime::invalidMin (int min)

{

try{

 if (min < 60 && min > 0)

  {return min;}

 else{

 

  cin.clear();

  cin.ignore();

  cout << "Invalid input! Please input minutes again in correct 12 hour format: ";

  cin >> min;

  invalidMin(min);

  throw 20;

  return 0;

 }

   

}

catch (int e) { cout << "Invalid minute input!" << endl;}

}

int convertTime::invalidSec(int sec)

{

try{

 if (sec < 60 && sec > 0)

  {return sec;}

 else{

 

  cin.clear();

  cin.ignore();

  cout << "Invalid input! Please input seconds again in correct 12 hour format: ";

  cin >> sec;

  invalidSec(sec);

  throw 30;

  return 0;

 }

   

}

catch (int t) { cout << "Invalid second input!" << endl;}

}

void convertTime::printMilTime()

{

cout << "Your time converted: " << hour << ":" << min << ":" << sec;

}

Explanation:

4 0
3 years ago
The properties of the air in the inlet section with A1 = 0.25ab m2 in a converging-diverging channel are given as U1 = 25a,b m/s
NeX [460]

Answer:

nice cake

Explanation:

3 0
3 years ago
Four of the minterms of the completely specified function f(a, b, c, d) are m0, m1, m4, and m5.
Sveta_85 [38]

Complete Question

The complete question is shown on the first uploaded image

Answer:

a) The required additional minterms  for f so that f has eight primary implicants with two literals and no other prime implicant are m_{2},m_{3},m_{7},m_{8},m_{11},m_{12},m_{13},m_{14} and m_{15}

b) The essential prime implicant are c' d',a'b',ab and cd

c) The minimum sum-of-product expression for f are

                  a'b' +ab +c'd'+cd+a'c',\\ a'b'+ab+c'd'+cd+a'd,\\a'b'+ab+c'd'+cd+bc'  and  \\ a'b'+ab+c'd' +cd+bd

Explanation:

The explanation is shown on the second third and fourth image

8 0
3 years ago
A large increase in elevation can cause a carbureted engine to run ________ if not properly adjusted for the altitude. a Rich b
mash [69]

Answer:

B - Poor

Explanation:

As you get higher up, There is less oxygen which causes the engine to create less power.

3 0
3 years ago
Other questions:
  • According to Manor, the example of the subway train in New York City is an example of which type of uniqueness?
    9·1 answer
  • Data becomes information when it is__________ in some way and made___________
    5·1 answer
  • A composite wall is made of two layers of 0.3 m and 0.15 m thickness with surfaces held at 600°C and 20°C respectively. If the c
    9·1 answer
  • What could happen in the aviation
    5·1 answer
  • Crest is to high, as through is to
    12·2 answers
  • Which technical planning document defines support tasks?
    7·1 answer
  • What engine does the mercedes 500e have​
    5·1 answer
  • What type of plans have to do with earth, soil, excavation, and location<br> of a house on a lot?
    12·1 answer
  • In a long trip what is considered a life line to take with you.
    12·1 answer
  • Define waves as it applies to electromagnetic fields
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!