diff options
Diffstat (limited to '620/CH1')
-rw-r--r-- | 620/CH1/EX1.1/example1_1.sce | 3 | ||||
-rw-r--r-- | 620/CH1/EX1.1/example1_1.txt | 3 | ||||
-rw-r--r-- | 620/CH1/EX1.2/example1_2.sce | 5 | ||||
-rw-r--r-- | 620/CH1/EX1.2/example1_2.txt | bin | 0 -> 158 bytes | |||
-rw-r--r-- | 620/CH1/EX1.3/example1_3.sce | 5 | ||||
-rw-r--r-- | 620/CH1/EX1.3/example1_3.txt | bin | 0 -> 172 bytes | |||
-rw-r--r-- | 620/CH1/EX1.4/example1_4.sce | 8 | ||||
-rw-r--r-- | 620/CH1/EX1.4/example1_4.txt | 15 | ||||
-rw-r--r-- | 620/CH1/EX1.5/example1_5.sce | 8 | ||||
-rw-r--r-- | 620/CH1/EX1.5/example1_5.txt | 15 | ||||
-rw-r--r-- | 620/CH1/EX1.6/example1_6.sce | 8 | ||||
-rw-r--r-- | 620/CH1/EX1.6/example1_6.txt | bin | 0 -> 432 bytes |
12 files changed, 70 insertions, 0 deletions
diff --git a/620/CH1/EX1.1/example1_1.sce b/620/CH1/EX1.1/example1_1.sce new file mode 100644 index 000000000..b67aa722c --- /dev/null +++ b/620/CH1/EX1.1/example1_1.sce @@ -0,0 +1,3 @@ +ft=3.67;
+m=ft*0.3048;
+disp("the given length (in m) is"); disp(m);
\ No newline at end of file diff --git a/620/CH1/EX1.1/example1_1.txt b/620/CH1/EX1.1/example1_1.txt new file mode 100644 index 000000000..6d59d343f --- /dev/null +++ b/620/CH1/EX1.1/example1_1.txt @@ -0,0 +1,3 @@ +the given length (in m) is
+
+ 1.118616
\ No newline at end of file diff --git a/620/CH1/EX1.2/example1_2.sce b/620/CH1/EX1.2/example1_2.sce new file mode 100644 index 000000000..475fbd17f --- /dev/null +++ b/620/CH1/EX1.2/example1_2.sce @@ -0,0 +1,5 @@ +s=0.0005;
+ms=s*10^3;
+disp("the value (in ms) is"); disp(ms);
+mus=s*10^6;
+disp("the value (in μs) is"); disp(mus);
\ No newline at end of file diff --git a/620/CH1/EX1.2/example1_2.txt b/620/CH1/EX1.2/example1_2.txt Binary files differnew file mode 100644 index 000000000..409c1b55b --- /dev/null +++ b/620/CH1/EX1.2/example1_2.txt diff --git a/620/CH1/EX1.3/example1_3.sce b/620/CH1/EX1.3/example1_3.sce new file mode 100644 index 000000000..38a3ab667 --- /dev/null +++ b/620/CH1/EX1.3/example1_3.sce @@ -0,0 +1,5 @@ +ns=0.035;
+ps=ns*10^3;
+disp("the value (in ps) is"); disp(ps);
+mus=ns*10^(-3);
+disp("the value (in μs) is"); disp(mus);
\ No newline at end of file diff --git a/620/CH1/EX1.3/example1_3.txt b/620/CH1/EX1.3/example1_3.txt Binary files differnew file mode 100644 index 000000000..01ff00c4a --- /dev/null +++ b/620/CH1/EX1.3/example1_3.txt diff --git a/620/CH1/EX1.4/example1_4.sce b/620/CH1/EX1.4/example1_4.sce new file mode 100644 index 000000000..67cd1f7f1 --- /dev/null +++ b/620/CH1/EX1.4/example1_4.sce @@ -0,0 +1,8 @@ +disp("Part a");
+disp("at A the reading is 11.5 mA");
+disp("at B the reading is 27 mA");
+disp("at C the reading is 43.5 mA");
+disp("Part b");
+disp("at A the reading is 23 mA");
+disp("at B the reading is 54 mA");
+disp("at C the reading is 87 mA");
\ No newline at end of file diff --git a/620/CH1/EX1.4/example1_4.txt b/620/CH1/EX1.4/example1_4.txt new file mode 100644 index 000000000..a8e3606d2 --- /dev/null +++ b/620/CH1/EX1.4/example1_4.txt @@ -0,0 +1,15 @@ +Part a
+
+ at A the reading is 11.5 mA
+
+ at B the reading is 27 mA
+
+ at C the reading is 43.5 mA
+
+ Part b
+
+ at A the reading is 23 mA
+
+ at B the reading is 54 mA
+
+ at C the reading is 87 mA
\ No newline at end of file diff --git a/620/CH1/EX1.5/example1_5.sce b/620/CH1/EX1.5/example1_5.sce new file mode 100644 index 000000000..ad53dc34d --- /dev/null +++ b/620/CH1/EX1.5/example1_5.sce @@ -0,0 +1,8 @@ +disp("Part a");
+disp("at A the reading is 0.72 V");
+disp("at B the reading is 2.37 V");
+disp("at C the reading is 4.30 V");
+disp("Part b");
+disp("at A the reading is 23 V");
+disp("at B the reading is 75 V");
+disp("at C the reading is 136 V");
\ No newline at end of file diff --git a/620/CH1/EX1.5/example1_5.txt b/620/CH1/EX1.5/example1_5.txt new file mode 100644 index 000000000..5eb98d3eb --- /dev/null +++ b/620/CH1/EX1.5/example1_5.txt @@ -0,0 +1,15 @@ +Part a
+
+ at A the reading is 0.72 V
+
+ at B the reading is 2.37 V
+
+ at C the reading is 4.30 V
+
+ Part b
+
+ at A the reading is 23 V
+
+ at B the reading is 75 V
+
+ at C the reading is 136 V
\ No newline at end of file diff --git a/620/CH1/EX1.6/example1_6.sce b/620/CH1/EX1.6/example1_6.sce new file mode 100644 index 000000000..c5c3224e2 --- /dev/null +++ b/620/CH1/EX1.6/example1_6.sce @@ -0,0 +1,8 @@ +disp("Part a");
+disp("at A the reading is 170 Ω");
+disp("at B the reading is 750 Ω");
+disp("at C the reading is 3.5 kΩ");
+disp("Part b");
+disp("at A the reading is 170 kΩ");
+disp("at B the reading is 750 kΩ");
+disp("at C the reading is 3.5 MΩ");
\ No newline at end of file diff --git a/620/CH1/EX1.6/example1_6.txt b/620/CH1/EX1.6/example1_6.txt Binary files differnew file mode 100644 index 000000000..4daf7f3aa --- /dev/null +++ b/620/CH1/EX1.6/example1_6.txt |