diff options
Diffstat (limited to '3754/CH33')
-rw-r--r-- | 3754/CH33/EX33.2/33_2.sce | 15 | ||||
-rw-r--r-- | 3754/CH33/EX33.3/33_3.sce | 16 |
2 files changed, 31 insertions, 0 deletions
diff --git a/3754/CH33/EX33.2/33_2.sce b/3754/CH33/EX33.2/33_2.sce new file mode 100644 index 000000000..19fadaac6 --- /dev/null +++ b/3754/CH33/EX33.2/33_2.sce @@ -0,0 +1,15 @@ +clear//
+
+//Variables
+
+Vpk = 1.0 //Peak-to-peak voltage (in volts)
+Tby2 = 0.1 //Half-period (in seconds)
+tau = 0.25 //Time constant (in seconds)
+
+//Calculation
+
+Vc = 0.5 * exp(-Tby2/tau) //Output voltage (in volts)
+
+//Result
+
+printf("\n Output peak voltage is %0.1f V.",Vc)
diff --git a/3754/CH33/EX33.3/33_3.sce b/3754/CH33/EX33.3/33_3.sce new file mode 100644 index 000000000..4f5a9ed1f --- /dev/null +++ b/3754/CH33/EX33.3/33_3.sce @@ -0,0 +1,16 @@ +clear//
+
+//Variables
+
+RC = 250.0 * 10**-12 //Time constance (in seconds)
+Vomax = 50.0 //Maximum output voltage (in volts)
+tau = 0.05 * 10**-6 //time (in seconds)
+
+//Calculation
+
+alpha = Vomax / RC //alpha (in volt per second)
+Vp = alpha * tau //Peak voltage (in volts)
+
+//Result
+
+printf("\n The peak value of input voltage is %0.3f kV.",Vp * 10**-3)
|