diff options
Diffstat (limited to '2939/CH4/EX4.9/Ex4_9.sce')
-rwxr-xr-x | 2939/CH4/EX4.9/Ex4_9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2939/CH4/EX4.9/Ex4_9.sce b/2939/CH4/EX4.9/Ex4_9.sce new file mode 100755 index 000000000..7140bf838 --- /dev/null +++ b/2939/CH4/EX4.9/Ex4_9.sce @@ -0,0 +1,11 @@ +
+// Ex4_9
+clc;
+
+// Given:
+E=2.5; // in MeV
+// Solution:
+// 1 Mev/atom=96.32GJ/mole
+E1=E*96.32// GJ/mole
+E2=0.1*E1;// for 0.1 mole
+printf("The energy that would be released for 0.1 mole of Co will be = %f GJ",E2)
|