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 --- 1967/CH3/EX3.1/3_1.sce | 13 +++++++++++++ 1967/CH3/EX3.2/3_2.sce | 11 +++++++++++ 2 files changed, 24 insertions(+) create mode 100755 1967/CH3/EX3.1/3_1.sce create mode 100755 1967/CH3/EX3.2/3_2.sce (limited to '1967/CH3') diff --git a/1967/CH3/EX3.1/3_1.sce b/1967/CH3/EX3.1/3_1.sce new file mode 100755 index 000000000..4d852ed4b --- /dev/null +++ b/1967/CH3/EX3.1/3_1.sce @@ -0,0 +1,13 @@ +clc +//initialisation of variables +clear +p= 1.013*10^6 //dynecm^2 +T= 273.16 //K +V= 773.4 //cc +n= 0.0687 //cal +//CALCCULATIONS +W= p*V/T +k= W/n +//RESULTS +printf ('Work of expansion = %.2e ergs',W) +printf ('\n 1 cal = %.2e ergs',k) diff --git a/1967/CH3/EX3.2/3_2.sce b/1967/CH3/EX3.2/3_2.sce new file mode 100755 index 000000000..515fa6f39 --- /dev/null +++ b/1967/CH3/EX3.2/3_2.sce @@ -0,0 +1,11 @@ +clc +//initialisation of variables +clear +R= 8.314*10^7 //J/mol K +T= 298.2 //K +p1= 1 //atm +p2= 5 //atm +//CALCULATIONS +W= R*T*log(p1/p2) +//RESULTS +printf ('Work of expansion = %.2e ergs mole^-1 ',W) -- cgit