summaryrefslogtreecommitdiff
path: root/3754/CH33/EX33.3/33_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH33/EX33.3/33_3.sce')
-rw-r--r--3754/CH33/EX33.3/33_3.sce16
1 files changed, 16 insertions, 0 deletions
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)