From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 409/CH7/EX7.4/Example7_4.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 409/CH7/EX7.4/Example7_4.sce (limited to '409/CH7/EX7.4/Example7_4.sce') diff --git a/409/CH7/EX7.4/Example7_4.sce b/409/CH7/EX7.4/Example7_4.sce new file mode 100755 index 000000000..d4ac12bf4 --- /dev/null +++ b/409/CH7/EX7.4/Example7_4.sce @@ -0,0 +1,16 @@ +clear ; +clc; +// Example 7.4 +printf('Example 7.4\n\n'); +//Page no. 180 +// Solution + +n_un= 7 ;// Number of unknowns in the given problem- 3 values of xi and 4 values Fi +n_ie = 5 ;// Number of independent equations +// Summary of independent equations +// Three material balances:CH4,C2H6 and N2 +// One specified ratio: moles of CH4 to C2H6 equal 1.5 +// One summation of mole fraction in mixture equals 1 +d_o_f = n_un-n_ie ;// No. of degree of freedom + +printf('Number of degree of freedom for the given system is %i .\n',d_o_f); \ No newline at end of file -- cgit