diff options
Diffstat (limited to '1844/CH1/EX1.10/1Q10.sce')
-rw-r--r-- | 1844/CH1/EX1.10/1Q10.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1844/CH1/EX1.10/1Q10.sce b/1844/CH1/EX1.10/1Q10.sce new file mode 100644 index 000000000..1bf2645b4 --- /dev/null +++ b/1844/CH1/EX1.10/1Q10.sce @@ -0,0 +1,21 @@ +clc
+//Intialsing variables
+S=100 //Scale on map 1cm=100m on ground
+PMA= 20*30 // Plot area on map in sq cm
+OPA= PMA * S^2 // Area of plot in sq m
+printf ('Area of plot =%f sqm\n',OPA)
+
+//Top sheet
+S= 10^-6 // 1 sq km is represented by 1 sq cm
+TSR= OPA *S
+printf (' Represented by %f sqcm on Topo sheet\n',TSR)
+
+RFV=1/(100*100) // R.F of the sheet of village map
+RFT=1/(1*1000*100) //R.F of the scale of topo sheet
+
+printf (' R.F of the sheet of village map =%f\n',RFV)
+printf (' R.F of the scale of topo sheet =%f',RFT)
+
+
+
+
|