summaryrefslogtreecommitdiff
path: root/3850/CH34
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3850/CH34
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3850/CH34')
-rw-r--r--3850/CH34/EX34.1/Ex34_1.sce26
-rw-r--r--3850/CH34/EX34.1/Ex34_1.txt3
-rw-r--r--3850/CH34/EX34.2/Ex34_2.sce18
-rw-r--r--3850/CH34/EX34.2/Ex34_2.txt2
-rw-r--r--3850/CH34/EX34.4/Ex34_4.sce18
-rw-r--r--3850/CH34/EX34.4/Ex34_4.txt2
6 files changed, 69 insertions, 0 deletions
diff --git a/3850/CH34/EX34.1/Ex34_1.sce b/3850/CH34/EX34.1/Ex34_1.sce
new file mode 100644
index 000000000..a4dd899f6
--- /dev/null
+++ b/3850/CH34/EX34.1/Ex34_1.sce
@@ -0,0 +1,26 @@
+
+//To Find the Force and Acceleration
+
+//Example 34.1
+
+clear;
+
+clc;
+
+q=1.6*10^-19;//Charge on a proton in Coloumbs
+
+v=3.0*10^6;//Projected Speed of the Proton in m/s
+
+B=2.0*10^-3;//Uniform magnetic field strength in Tesla
+
+theta=%pi/2;//Angle between Magnetic Field and Velocity
+
+F=q*v*B*sin(theta);//Force on the proton due to Magnetic Field
+
+printf("Force on the proton = %f*10^-16 N",F*10^16);
+
+m=1.67*10^-27;//Mass of a proton in kg
+
+a=F/m;//Acceleration of the proton in m/s^2
+
+printf("\n Acceleration of the proton=%f*10^11 m/s^2",a*10^-11);
diff --git a/3850/CH34/EX34.1/Ex34_1.txt b/3850/CH34/EX34.1/Ex34_1.txt
new file mode 100644
index 000000000..6d32539e7
--- /dev/null
+++ b/3850/CH34/EX34.1/Ex34_1.txt
@@ -0,0 +1,3 @@
+
+ Force on the proton = 9.600000*10^-16 N
+ Acceleration of the proton=5.748503*10^11 m/s^2 \ No newline at end of file
diff --git a/3850/CH34/EX34.2/Ex34_2.sce b/3850/CH34/EX34.2/Ex34_2.sce
new file mode 100644
index 000000000..29b4c555b
--- /dev/null
+++ b/3850/CH34/EX34.2/Ex34_2.sce
@@ -0,0 +1,18 @@
+
+//To calculate the Time Period
+
+//Example 34.2
+
+clear;
+
+clc;
+
+m=10*10^-6;//Mass of the particle in kg
+
+q=100*10^-6;//Charge of the particle in Coloumbs
+
+B=25*10^-3;//Magnetic Field Strength in Tesla
+
+T=2*%pi*m/(q*B);//Time Period in seconds
+
+printf("Time Period of the charge = %d seconds",T);
diff --git a/3850/CH34/EX34.2/Ex34_2.txt b/3850/CH34/EX34.2/Ex34_2.txt
new file mode 100644
index 000000000..d957179d0
--- /dev/null
+++ b/3850/CH34/EX34.2/Ex34_2.txt
@@ -0,0 +1,2 @@
+
+ Time Period of the charge = 25 seconds \ No newline at end of file
diff --git a/3850/CH34/EX34.4/Ex34_4.sce b/3850/CH34/EX34.4/Ex34_4.sce
new file mode 100644
index 000000000..6dd9937fe
--- /dev/null
+++ b/3850/CH34/EX34.4/Ex34_4.sce
@@ -0,0 +1,18 @@
+
+//To Find the Magnetic Dipole Moment of the Current Loop
+
+//Example 34.4
+
+clear;
+
+clc;
+
+i=10.0*10^-9;//Current in the Circular Loop in Amperes
+
+r=5.0*10^-2;//Radius of the Circular Loop in metres
+
+A=%pi*r^2;//Area of Circular Loop
+
+u=i*A;//Magnetic Dipole Moment in A-m^2
+
+printf("Magnetic Dipole Moment = %f*10^-11 A-m^2",u*10^11);
diff --git a/3850/CH34/EX34.4/Ex34_4.txt b/3850/CH34/EX34.4/Ex34_4.txt
new file mode 100644
index 000000000..d2ccefdd0
--- /dev/null
+++ b/3850/CH34/EX34.4/Ex34_4.txt
@@ -0,0 +1,2 @@
+
+ Magnetic Dipole Moment = 7.853982*10^-11 A-m^2 \ No newline at end of file