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
Finger [1]
3 years ago
6

Seawater has a specific density of 1.025. What is its specific volume in m^3/kg (to 3 significant figures of accuracy, tolerance

+/- 0.000005 m^3/kg)?
Engineering
1 answer:
Svetradugi [14.3K]3 years ago
6 0

Answer:

specific\ volume=0.00097\ m^3/kg

Explanation:

Given that

Specific gravity of sea water = 1.025

So density of sea water = 1.025 x 1000 kg/m^3

Density of sea water = 1025  kg/m^3

We know that

Density=\dfrac{mass}{Volume}   ---1

Specific volume

specific\ volume=\dfrac{Volume}{mass}    ---2

From equation 1 and 2

We can say that

specific\ volume=\dfrac{1}{density}\ m^3/kg

specific\ volume=\dfrac{1}{1025}\ m^3/kg

specific\ volume=0.00097\ m^3/kg

You might be interested in
A rigid 10-L vessel initially contains a mixture of liquid and vapor water at 100 °C, with a quality factor of 0.123. The mixtur
masya89 [10]

Answer:

Q_{in} = 46.454\,kJ

Explanation:

The vessel is modelled after the First Law of Thermodynamics. Let suppose the inexistence of mass interaction at boundary between vessel and surroundings, changes in potential and kinectic energy are negligible and vessel is a rigid recipient.

Q_{in} = U_{2} - U_{1}

Properties of water at initial and final state are:

State 1 - (Liquid-Vapor Mixture)

P = 101.42\,kPa

T = 100\,^{\textdegree}C

\nu = 0.2066\,\frac{m^{3}}{kg}

u = 675.761\,\frac{kJ}{kg}

x = 0.123

State 2 - (Liquid-Vapor Mixture)

P = 476.16\,kPa

T = 150\,^{\textdegree}C

\nu = 0.2066\,\frac{m^{3}}{kg}

u = 1643.545\,\frac{kJ}{kg}

x = 0.525

The mass stored in the vessel is:

m = \frac{V}{\nu}

m = \frac{10\times 10^{-3}\,m^{3}}{0.2066\,\frac{m^{3}}{kg} }

m = 0.048\,kg

The heat transfer require to the process is:

Q_{in} = m\cdot (u_{2}-u_{1})

Q_{in} = (0.048\,kg)\cdot (1643.545\,\frac{kJ}{kg} - 675.761\,\frac{kJ}{kg} )

Q_{in} = 46.454\,kJ

3 0
3 years ago
If you are a government authority what extend will you modify the existing policy
mr_godi [17]

Answer:

kk

Explanation:

dkdndidodd ndidkjeeiwonejeeidmdnddkdidfmndd

4 0
4 years ago
Ordan has _ 5 8 can of green paint and _ 3 6 can of blue paint. If the cans are the same size, does Jordan have more green paint
Morgarella [4.7K]

Answer:

Jordan has more green paints

Explanation:

Given

Green = \frac{5}{8}

Blue = \frac{3}{6}

Required

Which paint does he have more?

For better understanding, it's better to convert both measurements to decimal.

For the green paint:

Green = \frac{5}{8}

Green = 0.625

For the blue paint:

Blue = \frac{3}{6}

Blue = 0.5

By comparison:

0.625 > 0.5

<em>This means that Jordan has more green paints</em>

3 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
Miller Indices:
svetlana [45]

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|

5 0
3 years ago
Other questions:
  • Whenever you are around construction sites, you should A speed up so you get through it quicker and avoid falling rocks B maneuv
    10·1 answer
  • Indicate on a tensile curve such quantities as yield stress, Young's modulus, UTS, toughness, point of necking, point of fractur
    7·1 answer
  • Sublimation is to change from
    7·2 answers
  • Block B starts from rest and moves downward with a constant acceleration. Knowing that after slider block A has moved 400 mm its
    13·1 answer
  • Please Help !!
    5·1 answer
  • When you do a vehicle check, what do you NOT need to keep an eye on?
    9·1 answer
  • The hydrofoil boat has an A-36 steel propeller shaft that is 100 ft long. It is connected to an in-line diesel engine that deliv
    8·1 answer
  • When nondeterminism results from multiple threads attempting to access a shared resource such as a shared variable or a shared f
    9·1 answer
  • Which of the following would be addressed by an employer completing an EAP template?
    11·1 answer
  • A(n) _____ is an apparatus that changes alternating current (AC) to direct current (DC)
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!