diff options
Diffstat (limited to '3507/CH25/EX25.8/Ex25_8.sce')
-rw-r--r-- | 3507/CH25/EX25.8/Ex25_8.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3507/CH25/EX25.8/Ex25_8.sce b/3507/CH25/EX25.8/Ex25_8.sce new file mode 100644 index 000000000..4bdc18155 --- /dev/null +++ b/3507/CH25/EX25.8/Ex25_8.sce @@ -0,0 +1,13 @@ +//chapter25
+//example25.8
+//page555
+
+V1=200 // V
+d1=2 // cm
+d2=3 // cm
+
+// since sensitivity = voltage / deflcetion we get
+S=V1/d1
+V2=S*d2
+
+printf("unknown voltage = %.3f V",V2)
|