diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1991/CH7/EX7.2 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1991/CH7/EX7.2')
-rwxr-xr-x | 1991/CH7/EX7.2/2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1991/CH7/EX7.2/2.sce b/1991/CH7/EX7.2/2.sce new file mode 100755 index 000000000..c1a0913cc --- /dev/null +++ b/1991/CH7/EX7.2/2.sce @@ -0,0 +1,13 @@ +clc
+clear
+//input
+q=2.4*10^-19 //charge1
+Q=3.8*10^-19//charge2
+ep=8.85*10^-12//permittivity of free space
+G=6.7*10^-11
+m=8.9*10^-31//mass 1
+M=1.5*10^-30//mass 2
+//calculation
+x=q*Q/(4*%pi*ep*m*M*G)//coulumbs law
+//output
+printf("the ratio of electrostatic force between charges %3.3e",x)
|