blob: 6f2a282b365b46f605d70f57e5671c72eb641b20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
clear
//INPUT DATA
Tl=30+273;//engine temperature in K
Th=500+273;//maximum temperature in K
//CALCULATIONS
nc=((Th-Tl)/Th)*100;//Efficiency of carnot cycle in percentage
//OUTPUT
printf('Efficiency of carnot cycle is %3.2f percentage ',nc)
|