diff options
Diffstat (limited to '3648/CH15/EX15.7/Ex15_7.sce')
-rw-r--r-- | 3648/CH15/EX15.7/Ex15_7.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH15/EX15.7/Ex15_7.sce b/3648/CH15/EX15.7/Ex15_7.sce new file mode 100644 index 000000000..5984cab5e --- /dev/null +++ b/3648/CH15/EX15.7/Ex15_7.sce @@ -0,0 +1,10 @@ + +//Example 15_7
+clc();
+clear;
+//To find out how much charge occurs
+e=3*10^6 //Units in N/C
+r=0.050 //Units in meters
+k=9*10^9 //Units in N meter^2/C^2
+q=(e*r^2)/k //Units in C
+printf("The charge Occurred is q=%.9f C",q)
\ No newline at end of file |