Answer:
Upper bounds 22.07 GPa
Lower bounds 17.59 GPa
Explanation:
Calculation to estimate the upper and lower bounds of the modulus of this composite.
First step is to calculate the maximum modulus for the combined material using this formula
Modulus of Elasticity for mixture
E= EcuVcu+EwVw
Let pug in the formula
E =( 110 x 0.40)+ (407 x 0.60)
E=44+244.2 GPa
E=288.2GPa
Second step is to calculate the combined specific gravity using this formula
p= pcuVcu+pwTw
Let plug in the formula
p = (19.3 x 0.40) + (8.9 x 0.60)
p=7.72+5.34
p=13.06
Now let calculate the UPPER BOUNDS and the LOWER BOUNDS of the Specific stiffness
UPPER BOUNDS
Using this formula
Upper bounds=E/p
Let plug in the formula
Upper bounds=288.2/13.06
Upper bounds=22.07 GPa
LOWER BOUNDS
Using this formula
Lower bounds=EcuVcu/pcu+EwVw/pw
Let plug in the formula
Lower bounds =( 110 x 0.40)/8.9+ (407 x 0.60)/19.3
Lower bounds=(44/8.9)+(244.2/19.3)
Lower bounds=4.94+12.65
Lower bounds=17.59 GPa
Therefore the Estimated upper and lower bounds of the modulus of this composite will be:
Upper bounds 22.07 GPa
Lower bounds 17.59 GPa
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:
The dial bore gauge measures the inside of round holes, such as the bearing journals. This one tool can measure 2″ up to 6″ diameter holes. Both tools are needed in order to check the interior and exterior dimensions of the crankshaft, rods and engine block journals, as well as the thickness of the bearings themselves.
Hope it's helpful to you
pls mark me as brain list
Answer:
Please explain it in English so that i can help or you need someone else who can speak Vietnam
Answer:
//Define the header file
#ifndef PLAYER_H
#define PLAYER_H
//header file.
#include <string>
//Use the standard namespace.
using namespace std;
//Define the class Player.
class Player
{
//Declare the required data members.
string name;
int score;
public:
//Declare the required
//member functions.
void setName(string par_name);
void setScore(int par_score);
string getName();
int getScore();
}
//End the definition
//of the header file.
#endif
Player.cpp:
//Include the "Player.h" header file,
#include "Player.h"
//Define the setName() function.
void Player::setName(string par_name)
{
name = par_name;
}
//Define the setScore() function.
void Player::setScore(int par_score)
{
score = par_score;
}
//Define the getName() function.
string Player::getName()
{
return name;
}
//Define the getScore() function.
int Player::getScore()
{
return score;
}