diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3836/CH13 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3836/CH13')
-rw-r--r-- | 3836/CH13/EX13.1/Ex13_1.sce | 11 | ||||
-rw-r--r-- | 3836/CH13/EX13.2/Ex13_2.sce | 13 | ||||
-rw-r--r-- | 3836/CH13/EX13.3/Ex13_3.sce | 11 | ||||
-rw-r--r-- | 3836/CH13/EX13.4/Ex13_4.sce | 11 | ||||
-rw-r--r-- | 3836/CH13/EX13.5/Ex13_5.sce | 11 | ||||
-rw-r--r-- | 3836/CH13/EX13.6/Ex13_6.sce | 11 | ||||
-rw-r--r-- | 3836/CH13/EX13.7/Ex13_7.sce | 11 |
7 files changed, 79 insertions, 0 deletions
diff --git a/3836/CH13/EX13.1/Ex13_1.sce b/3836/CH13/EX13.1/Ex13_1.sce new file mode 100644 index 000000000..75c025f1a --- /dev/null +++ b/3836/CH13/EX13.1/Ex13_1.sce @@ -0,0 +1,11 @@ +clear +//Initialization +c=10*10**-6 //capacitance in Farad +v=10 //voltage + +//Calculation +q=c*v //charge in coulomb + +//Results +printf("\n Charge, q = %.1f uC",q*10**6) + diff --git a/3836/CH13/EX13.2/Ex13_2.sce b/3836/CH13/EX13.2/Ex13_2.sce new file mode 100644 index 000000000..da77789ef --- /dev/null +++ b/3836/CH13/EX13.2/Ex13_2.sce @@ -0,0 +1,13 @@ +clear +//Initialization +l=25*10**-3 //length in meter +b=10*10**-3 //breadth in meter +d=7*10**-6 //distance between plates in meter +e=100 //dielectric constant of material +e0=8.85*10**-12 //dielectric constant of air + +//Calculation +c=(e0*e*l*b)*d**-1 //Capacitance +//Results +printf("\n Capacitance, C = %.1f nF",c*10**9) + diff --git a/3836/CH13/EX13.3/Ex13_3.sce b/3836/CH13/EX13.3/Ex13_3.sce new file mode 100644 index 000000000..dfdfec23a --- /dev/null +++ b/3836/CH13/EX13.3/Ex13_3.sce @@ -0,0 +1,11 @@ +clear +//Initialization +v=100 //voltage +d=10**-5 //distance in meter + +//Calculation +e=v*d**-1 //Electric Field Strength + +//Results +printf("\n Electric Field Strength, E = %d ^7 V/m",round(e*10**-6)) + diff --git a/3836/CH13/EX13.4/Ex13_4.sce b/3836/CH13/EX13.4/Ex13_4.sce new file mode 100644 index 000000000..6b98d6c51 --- /dev/null +++ b/3836/CH13/EX13.4/Ex13_4.sce @@ -0,0 +1,11 @@ +clear +//Initialization +q=15*10**-6 //charge in coulomb +a=200*10**-6 //area + +//Calculation +d=q/a //electric flux density + +//Results +printf("\n D = %d mC/m^2",d*10**3) + diff --git a/3836/CH13/EX13.5/Ex13_5.sce b/3836/CH13/EX13.5/Ex13_5.sce new file mode 100644 index 000000000..26d136a35 --- /dev/null +++ b/3836/CH13/EX13.5/Ex13_5.sce @@ -0,0 +1,11 @@ +clear +//Initialization +C1=10*10**-6 //capacitance in Farad +C2=25*10**-6 //capacitance in Farad + +//Calculation +C=C1+C2 //capacitance in Farad + +//Results +printf("\n C = %d uF",C*10**6) + diff --git a/3836/CH13/EX13.6/Ex13_6.sce b/3836/CH13/EX13.6/Ex13_6.sce new file mode 100644 index 000000000..f9ac62348 --- /dev/null +++ b/3836/CH13/EX13.6/Ex13_6.sce @@ -0,0 +1,11 @@ +clear +//Initialization +C1=10*10**-6 //capacitance in Farad +C2=25*10**-6 //capacitance in Farad + +//Calculation +C=(C1*C2)/(C1+C2) //capacitance in Farad + +//Results +printf("\n C = %.2f uF",C*10**6) + diff --git a/3836/CH13/EX13.7/Ex13_7.sce b/3836/CH13/EX13.7/Ex13_7.sce new file mode 100644 index 000000000..da840201b --- /dev/null +++ b/3836/CH13/EX13.7/Ex13_7.sce @@ -0,0 +1,11 @@ +clear +//Initialization +C1=10*10**-6 //capacitance in Farad +V=100 //voltage + +//Calculation +E=(0.5)*(C1*V**2) //Energy stored + +//Results +printf("\n E = %.1f mJ",E*10**3) + |