diff options
Diffstat (limited to '1376/CH5')
-rwxr-xr-x | 1376/CH5/EX5.1/5_1.sci | 7 | ||||
-rwxr-xr-x | 1376/CH5/EX5.2/5_2.sci | 7 | ||||
-rwxr-xr-x | 1376/CH5/EX5.3/5_3.sci | 5 | ||||
-rwxr-xr-x | 1376/CH5/EX5.4/5_4.sci | 13 | ||||
-rwxr-xr-x | 1376/CH5/EX5.5/5_5.sci | 9 |
5 files changed, 41 insertions, 0 deletions
diff --git a/1376/CH5/EX5.1/5_1.sci b/1376/CH5/EX5.1/5_1.sci new file mode 100755 index 000000000..e0e39dae7 --- /dev/null +++ b/1376/CH5/EX5.1/5_1.sci @@ -0,0 +1,7 @@ +//5.1
+clc;
+Ipq=4/(3+4);
+Vpq=Ipq*3;
+Vpq_per_cm=Vpq/100;
+Dpx=1.0186/Vpq_per_cm;
+printf("Distance PX=%.2f cm",Dpx)
diff --git a/1376/CH5/EX5.2/5_2.sci b/1376/CH5/EX5.2/5_2.sci new file mode 100755 index 000000000..7e10062f8 --- /dev/null +++ b/1376/CH5/EX5.2/5_2.sci @@ -0,0 +1,7 @@ +//5.2
+clc;
+V_per_cm=1.0186/60;
+//When S is replaced by a dry cell we get PK=85 cm for null deflection
+Dpk=85;
+V_dry_cell=Dpk*V_per_cm;
+printf("Voltage of dry cell=%.2f V",V_dry_cell)
\ No newline at end of file diff --git a/1376/CH5/EX5.3/5_3.sci b/1376/CH5/EX5.3/5_3.sci new file mode 100755 index 000000000..7474005ef --- /dev/null +++ b/1376/CH5/EX5.3/5_3.sci @@ -0,0 +1,5 @@ +//5.3
+clc;
+Vpq=(1.02*5/2500)*1000;
+Lpq=1.2*100/Vpq;
+printf("Length of PQ=%.2f m",Lpq)
\ No newline at end of file diff --git a/1376/CH5/EX5.4/5_4.sci b/1376/CH5/EX5.4/5_4.sci new file mode 100755 index 000000000..35ade09f1 --- /dev/null +++ b/1376/CH5/EX5.4/5_4.sci @@ -0,0 +1,13 @@ +//5.4
+clc;
+l2=(10/3)*(1.5/1.5)*(9/15)^2;
+printf("Length of wire=%.2f m",l2)
+a1=0.0004;
+a2=0.0003;
+R2=1;
+R1=1.5*R2;
+T=100;
+Rp=R1*(1+a1*T);
+Rq=R2*(1+a2*T);
+R=Rp/Rq;
+printf("Ratio of resistances=%.2f",R)
\ No newline at end of file diff --git a/1376/CH5/EX5.5/5_5.sci b/1376/CH5/EX5.5/5_5.sci new file mode 100755 index 000000000..628de84d8 --- /dev/null +++ b/1376/CH5/EX5.5/5_5.sci @@ -0,0 +1,9 @@ +//5.5
+clc;
+emf_std_cell=1.0183;
+emf_cell=70/50*emf_std_cell;
+printf("e.m.f. of the cell=%.2f V",emf_cell)
+V_read=1.35;
+V_cal=1.32379;
+error_voltmeter_percent=((V_read-V_cal)/V_cal)*100;
+printf("\nPerentage error of the voltmeter=%.2f",error_voltmeter_percent)
\ No newline at end of file |