blob: f4707be074a2a1df99090094ba11486399b16667 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Engineering and Chemical Thermodynamics
//Example 9.16
//Page no :469
clear ; clc ;
//Given
m = 4 ;
T = 2 ;
Pai = 1 ;
S = 1 ;
R = m - T + 2 - Pai - S ;
disp(" Example: 9.16 Page no : 469") ;
printf("\n We must specify %g independent equations .",R)
|