summaryrefslogtreecommitdiff
path: root/1427/CH2/EX2.9/2_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH2/EX2.9/2_9.sce')
-rw-r--r--1427/CH2/EX2.9/2_9.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH2/EX2.9/2_9.sce b/1427/CH2/EX2.9/2_9.sce
new file mode 100644
index 000000000..1e57d5229
--- /dev/null
+++ b/1427/CH2/EX2.9/2_9.sce
@@ -0,0 +1,9 @@
+//ques-2.9
+//Determining percentage of Nitrogen in given coal sample
+clc
+w=1;//Weight of coal sample taken (in g)
+v1=25;//Volume of sulphuric acid used (in mL)
+n=1/10;//Normality of sulphuric acid
+v2=15;//Volume of Sodium hydroxide used (in mL)
+N=((v1-v2)*n*1.4)/w;//Percentage of coal sample
+printf("The percentage of Ntrogen in coal sample is %.1f \n",N);