summaryrefslogtreecommitdiff
path: root/1427/CH25/EX25.4/25_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH25/EX25.4/25_4.sce')
-rw-r--r--1427/CH25/EX25.4/25_4.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH25/EX25.4/25_4.sce b/1427/CH25/EX25.4/25_4.sce
new file mode 100644
index 000000000..0e8c86d06
--- /dev/null
+++ b/1427/CH25/EX25.4/25_4.sce
@@ -0,0 +1,8 @@
+//ques-25.4
+//Calculating kinetic energy of an ideal gas and temperature required
+clc
+T1=273;//temperature (in K)
+n1=1; n2=3;//number of moles
+KE=(3/2)*n1*8.314*T1;
+T2=KE/((3/2)*8.314*n2);
+printf("The kinetic energy of the ideal gas is %.3f kJ/mol and the temperature required for 3 moles of gas is %d K.",KE/1000,T2);