blob: 980b4741dcc26f3d35a85a64289fc07e19e69765 (
plain)
1
2
3
4
5
6
7
8
9
|
clc
pathname=get_absolute_file_path('4_8_2.sce')
filename=pathname+filesep()+'482.sci'
exec(filename)
printf(" All the values in the textbook are Approximated hence the values in this code differ from those of Textbook")
nO2Theoretical=basisButane*6.5
nAirTheoretical=nO2Theoretical*4.76
percent=(basisAir-nAirTheoretical)*100/nAirTheoretical
printf(" \n percent excess air=%f",percent)
|