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

We would like to measure the density (p) of an ideal gas. We know the ideal gas law provides p= , where P represents pressure, R

is a constant equal to 287.058 J/kg-K and I represents temperature. We use a pressure transducer to take 15 measurements, all under the same conditions. The sample mean and standard deviation obtained from these 15 pressure measurements are 120,300 Pa and 6,600 Pa respectively. The pressure transducer specifications sheet reports an accuracy of 0.6% of the full-scale output (FSO) and a sensitivity error of 0.3% of the FSO. The FSO for this instrument is 180,000 Pa. In addition, we use a thermocouple to measure the gas temperature. We take 20 temperature measurements and obtain a sample mean and standard deviation of 340 K and 8 K, respectively. The accuracy of the thermocouple is 0.25% of the reading and its hysteresis uncertainty is + 2 K. Calculate the density of the ideal gas and its total uncertainty for a 95% probability. (Sol: 1.2325 +0.1578 kg/m3)
Engineering
1 answer:
Nostrana [21]3 years ago
5 0

Answer: =

Explanation:

=    P / (R * T) P- Pressure, R=287.058, T- temperature

From the given that

Sample mean(pressure) = 120300 Pa

Standard deviation (pressure) = 6600 Pa

Sample mean(temperature) = 340K

Standard deviation(temperature) = 8K

To calculate the Density;

Maximum pressure = Sample mean(pressure) + standard deviation (pressure) = 120300+6600 = 126900 Pa

Minimum pressure = Sample mean (pressure) - standard deviation (pressure)= 120300-6600 = 113700 Pa

Maximum temperature = Sample mean (temperature) + standard deviation (temperature) = 340+8 = 348K

Minimum temperature = Sample mean (temperature) - standerd deviation (temperature) = 340-8 = 332K

So now to calculate the density:

Maximum Density= Pressure (max)/(R*Temperature (min))= 126900/(287.058*332)= 1.331

Minimum density=Pressure(min)/(R*Temperature (max))= 113700/(287.058*348)= 1.138

Average density= (density (max)+ density (min))/2= (1.331+1.138)/2= 1.2345

cheers i hope this helps

You might be interested in
The A/C compressor will not engage when the A/C is turned on. The static refrigerant pressure is 75 psi and the outside temperat
VikaD [51]

In the case above,  poor connection at the pressure cycling switch  and also a faulty A/C clutch coil could be the cause.

<h3>What is likely the reason when an A/C compressor will not engage if A/C is turned on?</h3>

The cause that hinders the A/C Compressor from engaging are:

  • Due to low pressure lockout.
  • Due to a poor ground
  • Due to bad clutch coil.
  • Dur to an opening in the wire that links to the clutch coil.
  • Due to a blown fuse.

Note that the pressure switches is known to be one that control the on/off function of any kind of AC compressor and as such, if there is switch failure, it can hinder the AC compressor from functioning at all.

Therefore, technician A and B are correct.

Learn more about refrigerant pressure from

brainly.com/question/10054719

#SPJ1

3 0
2 years ago
A wastewater treatment plant has two primary clarifiers, each 20m in diameter with a 2-m side-water depth. the effluent weirs ar
jasenka [17]

Answer:

overflow rate 20.53 m^3/d/m^2

Detention time 2.34 hr

weir loading  114.06 m^3/d/m

Explanation:

calculation for single clarifier

sewag\  flow Q = \frac{12900}{2} = 6450 m^2/d

surface\  area =\frac{pi}{4}\times diameter ^2 = \frac{pi}{4}\times 20^2

surface area = 314.16 m^2

volume of tankV  = A\times side\ water\ depth

                             =314.16\times 2 = 628.32m^3

Length\ of\  weir = \pi \times diameter of weir

                       = \pi \times 18 = 56.549 m

overflow rate =v_o = \frac{flow}{surface\ area} = \frac{6450}{314.16} = 20.53 m^3/d/m^2

Detention timet_d = \frac{volume}{flow} = \frac{628.32}{6450} \times 24 = 2.34 hr

weir loading= \frac{flow}{weir\ length} = \frac{6450}{56.549} = 114.06 m^3/d/m

6 0
3 years ago
A heat engine is coupled with a dynamometer. The length of the load arm is 900 mm. The spring balance reading is 16. Applied wei
miss Akunina [59]

Answer:

P = 80.922 KW

Explanation:

Given data;

Length of load arm is 900 mm = 0.9 m

Spring balanced  read 16 N

Applied weight is 500 N

Rotational speed is 1774 rpm

we know that power is given as

P = T\times \omega

T Torque = (w -s) L = (500 - 16)0.9 = 435.6 Nm

\omega angular speed =\frac{2 \pi N}{60}

Therefore Power is

P =\frac{435.6 \time 2 \pi \times 1774}{60} = 80922.65  watt

P = 80.922 KW

4 0
3 years ago
The base class Pet has attributes name and age. The derived class Dog inherits attributes from the base class Pet class and incl
Nonamiya [84]

Answer:

Explanation:

class Pet:

   def __init__(self):

       self.name = ''

       self.age = 0

   def print_info(self):

       print('Pet Information:')

       print('   Name:', self.name)

       print('   Age:', self.age)

class Dog(Pet):

   def __init__(self):

       Pet.__init__(self)

       self.breed = ''

def main():

   my_pet = Pet()

   my_dog = Dog()

   pet_name = input()

   pet_age = int(input())

   dog_name = input()

   dog_age = int(input())

   dog_breed = input()

   my_pet.name = pet_name

   my_pet.age = pet_age

   my_pet.print_info()

   my_dog.name = dog_name

   my_dog.age = dog_age

   my_dog.breed = dog_breed

   my_dog.print_info()

   print('   Breed:', my_dog.breed)

main()

3 0
3 years ago
python Write a program that asks a user to type in two strings and that prints •the characters that occur in both strings. •the
Yuliya22 [10]

Answer:

see explanation

Explanation:

#we first get the elements as inputs

x = input("enter string A :")

y = input("enter string B :")

#then we make independent sets with each

x = set(x)

y = set(y)

#then the intersection of the two sets

intersection = set.intersection(x,y)

#another set for the alphabet

#we use set.difference to get the elements present in x and not in y, and

#viceversa, finally we get the difference between the alphabet and the #intersection of the elements in our strings

z = set('abcdefghijklmnopqrstuvwxyz')

print('\nrepeated :\n',intersection)

print('differences :\n',' Items in A and not B\n',

set.difference(x,y),'\nItems in B and not A\n',

set.difference(y,x))

print('\nItems in neither :\n',set.difference(z,intersection))

8 0
3 years ago
Other questions:
  • A rigid tank of 1 in3 contains nitrogen gas at 600 kPa, 400 K. By mistake someone lets 0.5 kg flow out. If the final temperature
    5·1 answer
  • Two AAA-size lithium batteries are connected in series in a flashlight. Each battery has 3.5 volt and 4- Amp-hour capacity. If t
    8·1 answer
  • 2. In the above figure, what type of cylinder arrangement is shown in the figure above?
    9·2 answers
  • As part of an insurance company’s training program, participants learn how to conduct an analysis of clients’ insurability. The
    9·1 answer
  • All welding processes that take place without melting of the work pieces. a)- True b)-False
    15·1 answer
  • : A cyclical load of 1500 lb is to be exerted at the end of a 10 in. long aluminium beam (see Figure below). The bar must surviv
    6·1 answer
  • I will put other link in comments
    12·1 answer
  • Mention verious medium level and higher level human resources related to engineering​
    6·1 answer
  • Help please!!!!!
    12·1 answer
  • What is the physical mechanism that causes the friction factor to be higher in turbulent flow?
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!