The spherical pressure vessel has an inner diameter of 2 m and a thickness of 10 mm. A strain gauge having a length of 20 mm is attached to it, and it is observed to increase in length by 0.012 mm when the vessel is pressurized. Determine the pressure causing this deformation, and find the maximum in-plane shear stress, and the absolute maximum shear stress at a point on the outer surface of the vessel. The material is steel, for which Est

Answers

Answer 1

Question:

The spherical pressure vessel has an inner diameter of 2 m and a thickness of 10 mm. A strain gage having a length of 20 mm is attached to it, and it is observed to increase in length by 0.012 mm when the vessel is pressurized. Determine the pressure causing this deformation, and find the maximum in-plane shear stress, and the absolute maximum shear stress at a point on the outer surface of the vessel. The material is steel, for which Eₛₜ = 200 GPa and vₛₜ = 0.3.

Answer:

See explanation below

Explanation:

Given:

d = 2m = 2*10³ = 2000

thickness, t = 10 mm

Length of strain guage = 20 mm

i) Let's calculate d/t

[tex] \frac{d}{t} = \frac{2000}{10} = 200 [/tex]

Since [tex] \frac{d}{t}[/tex] is greater than length of strain guage, the pressure vessel is thin.

For the minimum normal stress, we have:

[tex] \sigma max= \frac{pd}{4t} [/tex]

[tex] \sigma max= \frac{2000p}{4 * 20} [/tex]

= 50p

For the minimum normal strain due to pressure, we have:

[tex] E_max= \frac{change in L}{L_g} [/tex]

[tex] = \frac{0.012}{20} = 0.60*10^-^3[/tex]

The minimum normal stress for a thin pressure vessel is 0.

[tex] \sigma _min = 0 [/tex]

i) Let's use Hookes law to calculate the pressure causing this deformation.

[tex] E_max = \frac{1}{E} [\sigma _max - V(\sigma _initial + \sigma _min)] [/tex]

Substituting figures, we have:

[tex] 0.60*10^-^3 = \frac{1}{200*10^9} [50p - 0.3 (50p + 0)] [/tex]

[tex] 120 * 10^6 = 35p [/tex]

[tex] p = \frac{120*10^6}{35}[/tex]

[tex] p = 3.429 * 10^6 [/tex]

p = 3.4 MPa

ii) Calculating the maximum in-plane shear stress, we have:

[tex] \frac{\sigma _max - \sigma _int}{2}[/tex]

[tex] = \frac{50p - 50p}{2} = 0 [/tex]

Max in plane shear stress = 0

iii) To find the absolute maximum shear stress at a point on the outer surface of the vessel, we have:

[tex] \frac{\sigma _max - \sigma _min}{2}[/tex]

[tex] = \frac{50p - 0}{2} = 25p [/tex]

since p = 3.429 MPa

25p = 25 * 3.4 MPa

= 85.71 ≈ 85.7 MPa

The absolute maximum shear stress at a point on the outer surface of the vessel is 85.7 MPa


Related Questions

Problem Statement: Air flows at a rate of 0.1 kg/s through a device as shown below. The pressure and temperature of the air at location 1 are 0.2 MPa and 800 K and at location 2 the pressure and temperature are 0.75 MPa and 700 K. The surroundings are at 300 K and the surface temperature of the device is 1000 K. Determine the rate that the device performs work on its surroundings if the rate of heat transfer from the surface of the device to the environment is 1 kW. Justify your answer. Note that the flow direction for the air is not specified so you need to consider all possibilities for the direction of the airflow. Assume that the air is an ideal gas, that R

Answers

Answer:

The answer is "+9.05 kw"

Explanation:

In the given question some information is missing which can be given in the following attachment.

The solution to this question can be defined as follows:

let assume that flow is from 1 to 2 then

Q= 1kw

m=0.1 kg/s

From the steady flow energy equation is:

[tex]m\{n_1+ \frac{v^2_1}{z}+ gz_1 \}+Q= m \{h_2+ \frac{v^2_2}{2}+ gz_2\}+w\\\\\ change \ energy\\\\0.1[1.005 \times 800]-1= 0.01[1.005\times 700]+w\\\\w= +9.05 \ kw\\\\[/tex]

If the sign of the work performed is positive, it means the work is done on the surrounding so, that the expected direction of the flow is right.

Create an abstract class DiscountPolicy. It should have a single abstract method computeDiscount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost. 2. Derive a class BulkDiscount from DiscountPolicy, as described in the previous exercise. It should have a constructor that has two parameters, minimum and percent. It should define the method computeDiscount so that if the quantity purchased of an item is more than minimum, the discount is percent percent. 3. Derive a class BuyNItemsGetOneFree from DiscountPolicy, as described in Exercise 1. The class should have a constructor that has a single parameter n. In addition, the class should define the method computeDiscount so that every nth item is free. For example, the following table gives the discount for the purchase of various counts of an item that costs $10, when n is 3: count 1 2 3 4 5 6 7 Discount 0 0 10 10 10 20 20

4. Derive a class CombinedDiscount from DiscountPolicy, as described in Exercise 1. It should have a constructor that has two parameters of type DiscountPolicy. It should define the method computeDiscount to return the maximum value returned by computeDiscount for each of its two private discount policies. The two discount policies are described in Exercises 2 and 3. 5. Define DiscountPolicy as an interface instead of the abstract class described in Exercise 1.

Answers

Answer:

Java Code was used to define classes in the abstract discount policy,The bulk discount, The buy items get one free and the combined discount

Explanation:

Solution

Code:

Main.java

public class Main {

public static void main(String[] args) {

  BulkDiscount bd=new BulkDiscount(10,5);

BuyNItemsGetOneFree bnd=new BuyNItemsGetOneFree(5);

CombinedDiscount cd=new CombinedDiscount(bd,bnd);

System.out.println("Bulk Discount :"+bd.computeDiscount(20, 20));

  System.out.println("Nth item discount :"+bnd.computeDiscount(20, 20));

 System.out.println("Combined discount :"+cd.computeDiscount(20, 20));    

  }

}

discountPolicy.java

public abstract class DiscountPolicy

{    

public abstract double computeDiscount(int count, double itemCost);

}    

BulkDiscount.java  

public class BulkDiscount extends DiscountPolicy

{    

private double percent;

private double minimum;

public BulkDiscount(int minimum, double percent)

{

this.minimum = minimum;

this.percent = percent;

}

at Override

public double computeDiscount(int count, double itemCost)

{

if (count >= minimum)

{

return (percent/100)*(count*itemCost); //discount is total price * percentage discount

}

return 0;

}

}

BuyNItemsGetOneFree.java

public class BuyNItemsGetOneFree extends DiscountPolicy

{

private int itemNumberForFree;

public BuyNItemsGetOneFree(int n)

{

  itemNumberForFree = n;

}

at Override

public double computeDiscount(int count, double itemCost)

{

if(count > itemNumberForFree)

return (count/itemNumberForFree)*itemCost;

else

  return 0;

}

}

CombinedDiscount.java

public class CombinedDiscount extends DiscountPolicy

{

private DiscountPolicy first, second;

public CombinedDiscount(DiscountPolicy firstDiscount, DiscountPolicy secondDiscount)

{

first = firstDiscount;

second = secondDiscount;

}

at Override

public double computeDiscount(int count, double itemCost)

{

double firstDiscount=first.computeDiscount(count, itemCost);

double secondDiscount=second.computeDiscount(count, itemCost);

if(firstDiscount>secondDiscount){

  return firstDiscount;

}else{

  return secondDiscount;

}

}  

}

is sampled at a rate of to produce the sampled vector and then quantized. Assume, as usual, the minimum voltage of the dynamic range is represented by all zeros and the maximum value with all ones. The numbers should increase in binary order from bottom to top. Find the bit combination used to store each sample when rounded to the nearest integer between and (clipping may occur). Note: A partially-correct answer will not be recognized. You must answer all three correctly on the same

Answers

Answer:

d[0] = 11111111

d[1] = 11011101

d[2] = 1111011

Explanation:

Assume that the number of bits is 8. The voltage range input is -8 to 7 volts. The range is thus 15V, and the resolution is 15/2^8 = 0.0586 volts. We will first add +8 to the input to convert it to a 0-15v signal. Then find the equivalent bit representation. For 7.8 volts, the binary signal will be all 1's, since the max input voltage for the ADC is 7 volts. For 4.95, we have 4.95+8 = 12.95 volts. Thus, N = 12.95/0.0586 = 221. The binary representation is 11011101. For -0.8, we have -0.8 + 8 = 7.2. Thus, N = 7.2/0.0586 = 123. The binary representation is 1111011.

Thus,

d[0] = 11111111

d[1] = 11011101

d[2] = 1111011

6. For the following waste treatment facility, chemical concentration (mg/gal) within the tank can be considered uniform. The initial chemical concentration inside the tank was 5 mg/gal, the concentration of effluent coming in is 20 mg/gal. The volume of the tank is 600 gallons. The fluid coming in rate is equal to fluid going out is equal to 60 gal/min. (a) Establish a dynamic model of how the concentration of chemical inside the tank increases over time. Specify the units for your variables. (Hint: establish a mass balance of the waste chemical. The concentration inside the tank = concentration going out) (b) Find the Laplace transformation of the concentration (transfer function) for this step input of 20 mg/gal.

Answers

Answer:

mass of chemical coming in per minute = 60 × 20 = 1200 mg/min

at a time t(min) , M = mass of chemical = 1200 × t mg

concentration of chemical = 1200t / 600 = 2t mg / gallon

Explanation:

Since it is only fluid that is leaving and not chemical.

what is the Economic​

Answers

Economics is the social science that studies the production, distribution, and consumption of goods and services. Economics focuses on the behaviour and interactions of economic agents and how economies work-...........did this help

Sludge wasting rate (Qw) from the solids residence time (Thetac = mcrt) calculation. Given the following information from the previous problem. The total design flow is 15,000 m3/day. Theoretical hydraulic detention time (Theta) = 8 hours. The NPDES limit is 25 mg/L BOD/30 mg/L TSS.

Assume that the waste strength is 170 mg/L BOD after primary clarification.

XA=MLSS = 2200 mg/L,
Xw = Xu = XR = 6,600 mg/L,
qc = 8 days.

Make sure you account for the solids in the discharge.

What volume of sludge (Qw=m3/day) is wasted each day from the secondary clarifiers?

Answers

Answer:

The volume of sludge wasted each day from the secondary classifiers is Qw = 208.33 m^3 / day

Explanation:

Check the file attached for a complete solution.

The volume of the aeration tank was first calculated, V = 5000 m^3 / day.

The value of V was consequently substituted into the formula for the wasted sludge flow. The value of the wasted sludge flow was calculated to be Qw = 208.33 m^3 / day.

Find a negative feedback controller with at least two tunable gains that (1) results in zero steady state error when the input is a unit step (1/s). (and show why it works); (2) Gives a settling time of 4 seconds; (3) has 10% overshoot. Use the standard 2nd order approximation. Plot the step response of the system and compare the standard approximation with the plot.

Answers

Answer:

Gc(s) = [tex]\frac{0.1s + 0.28727}{s}[/tex]

Explanation:

comparing the standard approximation with the plot attached we can tune the PI gains so that the desired response is obtained. this is because the time requirement of the setting is met while the %OS requirement is not achieved instead a 12% OS is seen from the plot.

attached is the detailed solution and the plot in Matlab

Two Electric field vectors E1 and E2 are perpendicular to each other; obtain its base
vectors.

Answers

Answer:

<E1, E2>.

Explanation:

So, in the question above we are given that the Two Electric field vectors E1 and E2 are perpendicular to each other. Thus, we are going to have the i and the j components for the two Electric Field that is E1 and E2 respectively. That is to say the addition we give us a resultant E which is an arbitrary vector;

E = |E| cos θi + |E| sin θj. -------------------(1).

Therefore, if we make use of the components division rule we will have something like what we have below;

x = |E2|/ |E| cos θ and y = |E1|/|E| sin θ

Therefore, we will now have;

E = x |E2| i + y |E1| j.

The base vectors is then Given as <E1, E2>.

Other Questions
A rectangle has a height of 7a^2 and a width of a^4+5a^2+4.Express the area of the entire rectangle. Sarah adds 10 g of baking soda to 100 g of vinegar. The mixture begins 20to bubble. When the bubbling stops, Sarah finds the mass of the resultingmixture. She determines its mass is 105 g. The data she collected is in thetable. Does this follow the law of conservation of mass? Explain. The Renewable Fuel Standards states that a portion of America's gasoline must contain what:PLZ ANSWER 45 POINTS AND BRAINLY PLZ ANSWER SHORT AND CORRECTLY where do many of south asia major rivers begin Why might a trade war develop?A) After one nation enters into a mutually beneficial economic relationship with another, the second nation changes its government in a political war.B) After one nation establishes trade barriers against another, the second nation retaliates with its own trade barriers.C) After one nation begins to buy products from another, the second nations citizens begin a civil war to protest the exportation of those products.D) After one nation attacks another, the second nations military invades the first.I NEED HELP PLZ!!! Write the equation of the circle P graphed below. 4) The diameter of a circle is 32m. The radius is represented by 4(x + 2).Part A: Write an equation you can use to find the value of x.Part B: What is the value of x? Which value has an absolute deviation of 5 from the mean of this data set?26, 12, 35, 28, 14A 28B. 35C. 26D. 14 Determine if the set of vectors shown to the right is a basis for IR3 If the set of vectors is not a basis, determine whether it is linearly independent and whether the set 311-4 spans R 12 Which of the following describe the set? A. The set is a basis for R3 B. The set is linearly independent. C The set spans R3 D. None of the above The following table shows how many multiplication problems 4 students were able to solve in different amounts of time. For example, Murray solved 58 problems in 2 minutes.StudentProblemsMinutesMurray582Kris783Logan843Taylor924Which student solved problems at a rate of 28 per minute? On September 2, 1945, following the surrender of Japan and the end of World War II, General Douglas MacArthurmade a radio broadcast. He said,"We have known the bitterness of defeat and the exultation of triumph, and from both we have learned there can beno turning back. We must go forward to preserve in peace what we won in war."Based on MacArthur's words and the text of this lesson, describe in **two paragraphs** what efforts the Allies madeto preserve peace in the future. a person who answers the question in an interview is Which of these Is not mentioned as ephemeral art? What role does social media play in isolating teenagers?(A)Teens value virtual interactions more than real ones, leading them to become isolated.(B)Social media is addictive and acts like a drug until teens are isolated from the real world.(C)Teens use social media so much that it causes them to neglect real world interactions.Social media causes sleep deprivation, which causes teens to sleep instead of interact. Please help me any thing you can do just help me What is the author's opinion about the school hoursfrom 8:00 to 10:00 a.m.? Write the standard form of the line that passes through the given points. (-3,5) and (-2,-6) Given:CH4 + 2O2 CO2 + 2H2O, H = -890 kJ/molHow much energy is released when 59.7 grams of methane (CH4) reacts with oxygen?The combustion of 59.7 grams of methane releases ____ kilojoules of energy The product of Jack's age and Florence's age is 266. Jack is 14 yearsold. How old is Florence? Lyndon B. Johnson first worked as a ______________, which strongly influenced his views on segregation and government.a.Senatorb.teacherc.U.S. Navy fighter pilotd.political director