Answer:
COP of the heat pump is 3.013
OP of the cycle is 1.124
Explanation:
W = Q₂ - Q₁
Given
a)
Q₂ = Q₁ + W
= 15 + 7.45
= 22.45 kw
COP = Q₂ / W = 22.45 / 7.45 = 3.013
b)
Q₂ = 15 x 1.055 = 15.825 kw
therefore,
Q₁ = Q₂ - W
Q₁ = 15.825 - 7.45 = 8.375
∴ COP = Q₁ / W = 8.375 / 7.45 = 1.124
Explanation:
Diesel cycle:
All diesel engine work on diesel cycle .In diesel cycle there are four process .These processes are as follows
1. Adiabatic reversible compression
2.Heat addition at constant pressure
3.Adiabatic reversible expansion
4.Constant volume heat rejection
In general compression ratio in diesel engine is high as compare to petrol engine.But the efficiency of diesel cycle is less as compare to petrol cycle for same compression ratio.
Applications of diesel cycle:
Generally diesel cycle used for heavy vehicle or equipment because heavy vehicle or equipment is required high initial torque.So this cycle have lots of applications such as in industrial machining,in trucks,power plant,in mining ,in defense or military,large motors ,compressor and pump etc.
Answer: Attached below is the missing diagram
answer :
A) 1) Wr > WI, 2) Qc' > Qc
B) 1) QH' > QH, 2) Qc' > Qc
Explanation:
л = w / QH = 1 - Qc / QH and QH = w + Qc
<u>A) each cycle receives same amount of energy by heat transfer</u>
<u>(</u> Given that ; Л1 = 1/3 ЛR )
<em>1) develops greater bet work </em>
WR develops greater work ( i.e. Wr > WI )
<em>2) discharges greater energy by heat transfer</em>
Qc' > Qc
solution attached below
<u>B) If Each cycle develops the same net work </u>
<em>1) Receives greater net energy by heat transfer from hot reservoir</em>
QH' > QH ( solution is attached below )
<em>2) discharges greater energy by heat transfer to the cold reservoir</em>
Qc' > Qc
solution attached below
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;
}
Answer:
Isolated system
Explanation:
By definition of a closed system it means that a system that does not interact with it's surroundings in any manner
The other options are explained as under:
Isothermal system : It is a system that does not allow it's temperature to change
Control Mass system : It is a system whose mass remains conserved which means the mass entering the system equals the mass leaving the system
Open system: It is a system that allows transfer of mass and energy across it's boundary without any opposition i.e freely.