summaryrefslogtreecommitdiff
path: root/876/CH5/EX5.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /876/CH5/EX5.8
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '876/CH5/EX5.8')
-rwxr-xr-x876/CH5/EX5.8/Ex5_8.sce23
-rwxr-xr-x876/CH5/EX5.8/Ex5_8.txt16
-rwxr-xr-x876/CH5/EX5.8/Ex5_8t.txt23
3 files changed, 62 insertions, 0 deletions
diff --git a/876/CH5/EX5.8/Ex5_8.sce b/876/CH5/EX5.8/Ex5_8.sce
new file mode 100755
index 000000000..583140597
--- /dev/null
+++ b/876/CH5/EX5.8/Ex5_8.sce
@@ -0,0 +1,23 @@
+//caption:Find the value of multiplier resistance for the range(a)0-10V(b)0-50V(c)0-100V(d)0-200V
+//Ex5.8
+clc
+clear
+close
+V1=10//maximum voltage range(in V)
+V2=50//maximum voltage range(in V)
+V3=100//maximum voltage range(in V)
+V4=200//maximum voltage range(in V)
+I=0.002//deflection current(in A)
+R=100//internal resistance(in ohm)
+Rt1=V1/I
+R1=Rt1-R
+disp(R1,'(a)multiplier resistance(in ohm)=')
+Rt2=V2/I
+R2=Rt2-(R1+R)
+disp(R2,'(b)multiplier resistance(in ohm)=')
+Rt3=V3/I
+R3=Rt3-(R2+R1+R)
+disp(R3,'(c)multiplier resistance(in ohm)=')
+Rt4=V4/I
+R4=Rt4-(R1+R2+R3+R)
+disp(R4,'(d)multiplier resistance(in ohm)=') \ No newline at end of file
diff --git a/876/CH5/EX5.8/Ex5_8.txt b/876/CH5/EX5.8/Ex5_8.txt
new file mode 100755
index 000000000..aee16b875
--- /dev/null
+++ b/876/CH5/EX5.8/Ex5_8.txt
@@ -0,0 +1,16 @@
+(a)multiplier resistance(in ohm)=
+
+ 4900.
+
+ (b)multiplier resistance(in ohm)=
+
+ 20000.
+
+ (c)multiplier resistance(in ohm)=
+
+ 25000.
+
+ (d)multiplier resistance(in ohm)=
+
+ 50000.
+ \ No newline at end of file
diff --git a/876/CH5/EX5.8/Ex5_8t.txt b/876/CH5/EX5.8/Ex5_8t.txt
new file mode 100755
index 000000000..583140597
--- /dev/null
+++ b/876/CH5/EX5.8/Ex5_8t.txt
@@ -0,0 +1,23 @@
+//caption:Find the value of multiplier resistance for the range(a)0-10V(b)0-50V(c)0-100V(d)0-200V
+//Ex5.8
+clc
+clear
+close
+V1=10//maximum voltage range(in V)
+V2=50//maximum voltage range(in V)
+V3=100//maximum voltage range(in V)
+V4=200//maximum voltage range(in V)
+I=0.002//deflection current(in A)
+R=100//internal resistance(in ohm)
+Rt1=V1/I
+R1=Rt1-R
+disp(R1,'(a)multiplier resistance(in ohm)=')
+Rt2=V2/I
+R2=Rt2-(R1+R)
+disp(R2,'(b)multiplier resistance(in ohm)=')
+Rt3=V3/I
+R3=Rt3-(R2+R1+R)
+disp(R3,'(c)multiplier resistance(in ohm)=')
+Rt4=V4/I
+R4=Rt4-(R1+R2+R3+R)
+disp(R4,'(d)multiplier resistance(in ohm)=') \ No newline at end of file