summaryrefslogtreecommitdiff
path: root/3754/CH20/EX20.2
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH20/EX20.2')
-rw-r--r--3754/CH20/EX20.2/20_2.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3754/CH20/EX20.2/20_2.sce b/3754/CH20/EX20.2/20_2.sce
new file mode 100644
index 000000000..b56ca7bc7
--- /dev/null
+++ b/3754/CH20/EX20.2/20_2.sce
@@ -0,0 +1,14 @@
+clear//
+
+//Variables
+
+LR = 1.4 //Line regulation (in micro-volt per volt)
+dVS = 10 //Change in source voltage (in volts)
+
+//Calculation
+
+dVL = LR * dVS //Change in output voltage (in micro-volts)
+
+//Result
+
+printf("\n The change in output voltage is %0.3f micro-volt.",dVL)