Answer:
i) SF:
ii) BM : 
Explanation:
Let's take,
Making y the subject of formula, we have :

For shear force (SF), we have:
This is the area of the diagram.

The shear force equation =
For bending moment (BM):


The bending moment equation =

Answer:
The correct option is;
c. the exergy of the tank can be anything between zero to P₀·V
Explanation:
The given parameters are;
The volume of the tank = V
The pressure in the tank = 0 Pascal
The pressure of the surrounding = P₀
The temperature of the surrounding = T₀
Exergy is a measure of the amount of a given energy which a system posses that is extractable to provide useful work. It is possible work that brings about equilibrium. It is the potential the system has to bring about change
The exergy balance equation is given as follows;
![X_2 - X_1 = \int\limits^2_1 {} \, \delta Q \left (1 - \dfrac{T_0}{T} \right ) - [W - P_0 \cdot (V_2 - V_1)]- X_{destroyed}](https://tex.z-dn.net/?f=X_2%20-%20X_1%20%3D%20%5Cint%5Climits%5E2_1%20%7B%7D%20%5C%2C%20%5Cdelta%20Q%20%5Cleft%20%281%20-%20%5Cdfrac%7BT_0%7D%7BT%7D%20%5Cright%20%29%20-%20%5BW%20-%20P_0%20%5Ccdot%20%28V_2%20-%20V_1%29%5D-%20X_%7Bdestroyed%7D)
Where;
X₂ - X₁ is the difference between the two exergies
Therefore, the exergy of the system with regards to the environment is the work received from the environment which at is equal to done on the system by the surrounding which by equilibrium for an empty tank with 0 pressure is equal to the product of the pressure of the surrounding and the volume of the empty tank or P₀ × V less the work, exergy destroyed, while taking into consideration the change in heat of the system
Therefore, the exergy of the tank can be anything between zero to P₀·V.
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Answer:
Carpenter — A carpenter is someone who works with wood. They build houses and make cabinets etc.
Logging — Loggers are people who cut trees. They use strong chain saws to cut trees.
Shipwrights — Shipwrights build, design, and repair all sizes of boats.
Wood Machinist — Wood Machinists repair and cut timber or any kind of wood for construction projects. They also operate woodworking machines, as their name suggest.
Furniture finishers — Furniture finishers shape, decorate, and restore damaged and worn out furniture.
Answer:
critical stress = 595 MPa
Explanation:
given data
fracture toughness = 74.6 MPa-
crack length = 10 mm
f = 1
solution
we know crack length = 10 mm
and crack length = 2a as given in figure attach
so 2a = 10
a = 5 mm
and now we get here with the help of plane strain condition , critical stress is express as
critical stress =
......................1
put here value and we get
critical stress =
critical stress = 595 MPa
so here stress is change by plane strain condition because when plate become thinner than condition change by plane strain to plain stress.
plain stress condition occur in thin body where stress through thickness not vary by the thinner section.