summaryrefslogtreecommitdiff
path: root/3830/CH5/EX1.8/Ex5_1.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3830/CH5/EX1.8/Ex5_1.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3830/CH5/EX1.8/Ex5_1.sce')
-rw-r--r--3830/CH5/EX1.8/Ex5_1.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3830/CH5/EX1.8/Ex5_1.sce b/3830/CH5/EX1.8/Ex5_1.sce
new file mode 100644
index 000000000..ae7ba3075
--- /dev/null
+++ b/3830/CH5/EX1.8/Ex5_1.sce
@@ -0,0 +1,23 @@
+// Exa 5.1
+
+clc;
+clear;
+
+// Given
+
+E1 = 1/100; // exposure set for grid line impression(sec)
+E2 = 10; // second exposure duration(sec)
+R = 10^-4; // persistence of CRO screen(sec)
+I1 = 1; // Trace intensity for exposure 1(candle power)
+I2_normal = 4 ; // trace intensity for normal settings(candle power)
+
+// Solution
+
+printf(' The emission of light that would be received by photographic paper in both exposures must be the same \n Also, the product of time and light is to be the same. \n');
+I_req = I1*E1/R;
+printf(' Hence, the image intensity required = %d \n' ,I_req );
+I_boost = I_req/I2_normal;
+printf(' Therefore, the intensity boost required = %d times \n' , I_boost);
+
+printf(' The light emitted is proportional to the kinetic energy of the electron while it strikes the screen, which is equal to sqrt(V) , where V is the velocity while striking \n');
+ printf(' Therefore, the accelerating voltage of the accelerating anode should br increased by %d times \n',sqrt(I_boost));