diff options
Diffstat (limited to '182/CH8/EX8.6')
-rwxr-xr-x | 182/CH8/EX8.6/8_6.txt | 3 | ||||
-rwxr-xr-x | 182/CH8/EX8.6/example8_6.sce | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/182/CH8/EX8.6/8_6.txt b/182/CH8/EX8.6/8_6.txt new file mode 100755 index 000000000..4cf49f13b --- /dev/null +++ b/182/CH8/EX8.6/8_6.txt @@ -0,0 +1,3 @@ +
+6.R3=1 K-ohm
+ R1=54 ohm
\ No newline at end of file diff --git a/182/CH8/EX8.6/example8_6.sce b/182/CH8/EX8.6/example8_6.sce new file mode 100755 index 000000000..750d58a8f --- /dev/null +++ b/182/CH8/EX8.6/example8_6.sce @@ -0,0 +1,11 @@ +// To find the resistance R1 and R3 in fig 8-8
+// example 8-6 in page 207
+clc;
+// Given data
+R4=5e+3; L1=100e-3; Ls=500e-3; Rs=270; R3=1e+3; // resistances in ohm and inductances in henry
+//calculation
+printf("R3=%d K-ohm\n",R4*L1/(Ls*1000));
+printf("R1=%d ohm",Rs*R3/R4);
+//result
+//R3=1 K-ohm
+//R1=54 ohm
\ No newline at end of file |