Answer:
a) Please see attached copy below
b) 0.39KJ
c) 20.9‰
Explanation:
The three process of an air-standard cycle are described.
Assumptions
1. The air-standard assumptions are applicable.
2. Kinetic and potential energy negligible.
3. Air in an ideal gas with a constant specific heats.
Properties:
The properties of air are gotten from the steam table.
b) T₁=290K ⇒ u₁=206.91 kj/kg, h₁=290.16 kj/kg.
P₂V₂/T₂=P₁V₁/T₁⇒ T₂=P₂T₁/P₁ = 380/95(290K)= 1160K
T₃=T₂(P₃/P₂)⁽k₋1⁾/k =(1160K)(95/380)⁽⁰°⁴/₁.₄⁾ =780.6K
Qin=m(u₂₋u₁)=mCv(T₂-T₁)
=0.003kg×(0.718kj/kg.k)(1160-290)K= 1.87KJ
Qout=m(h₃₋h₁)=mCp(T₃₋T₁)
=0.003KG×(1.005kj/kg.k(780.6-290)K= 1.48KJ
Wnet, out= Qin-Qout = (1.87-1.48)KJ =0.39KJ
c)ηth= Wnet/W₍in₎ =0.39KJ/1.87KJ = 20.9‰
Answer:
Explanation:
Given data:
initial construction co = 0.286 wt %
concentration at surface position cs = 0 wt %
carbon concentration cx = 0.215 wt%
time = 7 hr

for 0.225% carbon concentration following formula is used

where, erf stand for error function




from the table erf(Z) value = 0.751 lie between (z) = 0.80 and z = 0.85 so by inteerpolation we have z = 0.815
from given table



x = 0.002395 mm
Answer:
a) P ≥ 22.164 Kips
b) Q = 5.4 Kips
Explanation:
GIven
W = 18 Kips
μ₁ = 0.30
μ₂ = 0.60
a) P = ?
We get F₁ and F₂ as follows:
F₁ = μ₁*W = 0.30*18 Kips = 5.4 Kips
F₂ = μ₂*Nef = 0.6*Nef
Then, we apply
∑Fy = 0 (+↑)
Nef*Cos 12º - F₂*Sin 12º = W
⇒ Nef*Cos 12º - (0.6*Nef)*Sin 12º = 18
⇒ Nef = 21.09 Kips
Wedge moves if
P ≥ F₁ + F₂*Cos 12º + Nef*Sin 12º
⇒ P ≥ 5.4 Kips + 0.6*21.09 Kips*Cos 12º + 21.09 Kips*Sin 12º
⇒ P ≥ 22.164 Kips
b) For the static equilibrium of base plate
Q = F₁ = 5.4 Kips
We can see the pic shown in order to understand the question.
Answer:
Judgement
Explanation:
Gilbert is required by the Judgement Principle to "disclose those conflicts of interest that cannot reasonably be avoided or escaped." Since Gilbert professionally believes that the software meets specifications, secures documents, and satisfies user requirements, it is not clear if he violated any principle. However, he could have informed his client of his interest in the software and also presented other software packages of different companies from which the client could make its independent choice.
Answer:
See explaination
Explanation:
#include <iostream>
#include<string.h>
using namespace std;
bool isPalindrome(string str, int lower, int upper){
if(str.length() == 0 || lower>=upper){
return true;
}
else{
if(str.at(lower) == str.at(upper)){
return isPalindrome(str,lower+1,upper-1);
}
else{
return false;
}
}
}
int main(){
string input;
cout<<"Enter string: ";
cin>>input;
if(isPalindrome(input,0,input.length()-1)){
cout<<input<<" is a palindrome"<<endl;
}
else{
cout<<input<<" is NOT a palindrome"<<endl;
}
return 0;
}