diff options
Diffstat (limited to '767/CH7/EX7.5.1')
-rwxr-xr-x | 767/CH7/EX7.5.1/Ch07Exa7_5_1.sci | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/767/CH7/EX7.5.1/Ch07Exa7_5_1.sci b/767/CH7/EX7.5.1/Ch07Exa7_5_1.sci new file mode 100755 index 000000000..7dc2c7392 --- /dev/null +++ b/767/CH7/EX7.5.1/Ch07Exa7_5_1.sci @@ -0,0 +1,84 @@ +// Scilab code Exa7.5.1: To calculate the electric field at the surface of wire of G.M. counter :P.no. 311 (2011)
+ V = 2000; // Potential difference, V
+ a = 0.01; // Radius of the wire, cm
+ b = 2; // Radius of the cylinderical tube, cm
+ r = 0.01; // Radius of the wire, m
+ E_r = V/(r*log(b/a)); // the electric field at the surface, V/m
+ printf("\n The electric field at the surface : %d V/cm", E_r)
+// Result
+// The electric field at the surface : 37747 V/cm
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|