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
denis-greek [22]
3 years ago
14

While there are many ways to solve this problem, one strategy is to calculate the volume of any metal's unit cell given its theo

retical density (Equation 3.8) and atomic weight. What is the volume of the zirconium unit cell in cubic meters?
Engineering
1 answer:
IgorC [24]3 years ago
8 0

Answer:

V_{c}=1.396x10^{-28}  m^{3} /unit.cell

Explanation:

z = number of atoms

M = Molar mass of zirconium

N = Avogadro’s number

Vc = volume of zirconium unit cell

d = density

z=12x\frac{1}{6}+2x\frac{1}{2}+3=6

z = 6 atoms per unit cell

M = 91.224 g/mol

N = 6.023x10^{23}  atoms/mol

d = 6.51g/cm^{3}

V_{c}=\frac{zxM}{dxN}

V_{c}=\frac{6x(91.224g/mol)}{(6.51g/cm^{3}) x(6.023x10^{23}atoms/mol) }

V_{c}=1.396x10^{-22}  cm^{3} /unit.cell

V_{c}=1.396x10^{-28}  m^{3} /unit.cell

You might be interested in
Steam enters an adiabatic turbine at 8 MPa and 500C with a mass flow rate of 3
Vinil7 [7]

Answer:

a)temperature=69.1C

b)3054Kw

Explanation:

Hello!

To solve this problem follow the steps below, the complete procedure is in the attached image

1. draw a complete outline of the problem

2. to find the temperature at the turbine exit  use termodinamic tables to find the saturation temperature at 30kPa

note=Through laboratory tests, thermodynamic tables were developed, these allow to know all the thermodynamic properties of a substance (entropy, enthalpy, pressure, specific volume, internal energy etc ..)  

through prior knowledge of two other properties such as pressure and temperature.  

3. Using thermodynamic tables find the enthalpy and entropy at the turbine inlet, then find the ideal enthalpy using the entropy of state 1 and the outlet pressure = 30kPa

4. The efficiency of the turbine is defined as the ratio between the real power and the ideal power, with this we find the real enthalpy.

Note: Remember that for a turbine with a single input and output, the power is calculated as the product of the mass flow and the difference in enthalpies.

5. Find the real power of the turbine

3 0
3 years ago
Determine the following parameters for the water having quality x=0.7 at 200 kPa:
ra1l [238]

Solution :

Given :

Water have quality x = 0.7 (dryness fraction) at around pressure of 200 kPa

The phase diagram is provided below.

a). The phase is a standard mixture.

b). At pressure, p = 200 kPa, T = $T_{saturated}$

   Temperature = 120.21°C

c). Specific volume

  $v_{f}= 0.001061, \ \ v_g=0.88578 \ m^3/kg$

  $v_x=v_f+x(v_g-v_f)$

       $=0.001061+0.7(0.88578-0.001061)$

       $=0.62036 \ m^3/kg$

d). Specific energy (u_x)

    $u_f=504.5 \ kJ/kg, \ \ u_{fg}=2024.6 \ kJ/kg$

   $u_x=504.5 + 0.7(2024.6)$

         $=1921.72 \ kJ/kg$

e). Specific enthalpy $(h_x)$

   At $h_f = 504.71, \ \ h_{fg} = 2201.6$

   h_x=504.71+(0.7\times 2201.6)

        $= 2045.83 \ kJ/kg$

f). Enthalpy at m = 0.5 kg

  $H=mh_x$

       $= 0.5 \times 2045.83$

       = 1022.91 kJ

7 0
3 years ago
Which of the following requirement statements is an example of a breakdown of the accuracy standard?
const2013 [10]

Answer:

<u>The automobile rental prices shall show all taxes (including a 6% state tax).</u>

Explanation:

Im pretty sure

4 0
3 years ago
Write a program that prompts for a line of text and then transforms the text based on chosen actions. Actions include reversing
nlexa [21]

Answer:

public class TextConverterDemo

{

//Method definition of action1337

public static String action1337(String current)

{

//Replace each L or l with a 1 (numeral one)

 current = current.replace('L', '1');

 current = current.replace('l', '1');

 

 //Replace each E or e with a 3 (numeral three)

 current = current.replace('E', '3');

 current = current.replace('e', '3');

 //Replace each T or t with a 7 (numeral seven)

 current = current.replace('T', '7');

 current = current.replace('t', '7');

 //Replace each O or o with a 0 (numeral zero)

 current = current.replace('O', '0');

 current = current.replace('o', '0');

 

//Replace each S or s with a $ (dollar sign)

 current = current.replace('S', '$');

 current = current.replace('s', '$');

 return current;

}

//Method definition of actionReverse

//This method is used to reverses the order of

//characters in the current string

public static String actionReverse(String current)

{

 //Create a StringBuilder's object

 StringBuilder originalStr = new StringBuilder();

 //Append the original string to the StribgBuilder's object

 originalStr.append(current);

 //Use reverse method to reverse the original string

 originalStr = originalStr.reverse();

 

 //return the string in reversed order

 return originalStr.toString();

}

//Method definition of main

public static void main(String[] args)

{

    //Declare variables

 String input, action;

 

 //Prompt the input message

 System.out.println("Welcome to the Text Converter.");

 System.out.println("Available Actions:");

 System.out.println("\t1337) convert to 1337-speak");

 System.out.println("\trev) reverse the string");

 System.out.print("Please enter a string: ");

   

 //Create a Scanner class's object

 Scanner scn = new Scanner(System.in);

 

 //Read input from the user

 input = scn.nextLine();

 do

 {

  /*Based on the action the user chooses, call the appropriate

   * action method. If an unrecognized action is entered then

   * the message "Unrecognized action." should be shown on a

   * line by itself and then the user is prompted again just

   * as they were when an action was performed.

   * */

  System.out.print("Action (1337, rev, quit): ");

  action = scn.nextLine();

  if (action.equals("1337"))

  {

   input = action1337(input);

   System.out.println(input);

  } else if (action.equals("rev"))

  {

   input = actionReverse(input);

   System.out.println(input);

  } else if (!action.equals("quit"))

  {

   System.out.println("Unrecognized action.");

  }

 } while (!action.equals("quit"));

 System.out.println("See you next time!");

 scn.close();

}

}

7 0
3 years ago
Which is not required when working in a manufacturing facility?
Artyom0805 [142]
Flip flops are not required
5 0
3 years ago
Other questions:
  • Consider a simple ideal Rankine cycle and an ideal regenerative Rankine cycle with one open feedwater heater. The two cycles are
    15·1 answer
  • A boy weighing 108-lb starts from rest at the bottom A of a 6-percent incline and increases his speed at a constant rate to 7 mi
    11·1 answer
  • A water jet strikes normal to a fixed plate. If diameter of the outlet of the nozzle is 8 cm,and velocity of water at the outlet
    11·1 answer
  • Amplifiers are extensively used in the baseband portion of a radio receiver system to condition the baseband signal to produce a
    5·1 answer
  • A MOSFET differs from a JFET mainly because
    13·1 answer
  • What is the basic formula for actual mechanical advantage?
    12·1 answer
  • Estimate the maximum expected thermal conductivity for a Cermet that contains 58 vol% titanium carbide (TiC) particles in a coba
    8·1 answer
  • A jointed arm robot can rotate on the following 6 axes?
    8·1 answer
  • thanh thẳng AD có kích thước và chịu lực như hình.biết P1 = 10kn, p2=5kn,M=15kn*m,a=2m.Hãy xách định phản lực liên kết tại A,b
    14·1 answer
  • The static weight distribution is changed laterally by
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!