diff options
Diffstat (limited to '3636/CH11/EX11.7')
-rw-r--r-- | 3636/CH11/EX11.7/Ex11_7.sce | 11 | ||||
-rw-r--r-- | 3636/CH11/EX11.7/Ex11_7.txt | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/3636/CH11/EX11.7/Ex11_7.sce b/3636/CH11/EX11.7/Ex11_7.sce new file mode 100644 index 000000000..769cae52b --- /dev/null +++ b/3636/CH11/EX11.7/Ex11_7.sce @@ -0,0 +1,11 @@ +clear;
+clc;
+VBB=24 //in V
+r1=3 //in k-ohm
+r2=5 //in k-ohm
+
+//Calculation
+n=r1/(r1+r2)
+VP=(n*VBB)+0.7
+
+mprintf("peak-point voltage= %1.1f V",VP)
diff --git a/3636/CH11/EX11.7/Ex11_7.txt b/3636/CH11/EX11.7/Ex11_7.txt new file mode 100644 index 000000000..be3936183 --- /dev/null +++ b/3636/CH11/EX11.7/Ex11_7.txt @@ -0,0 +1 @@ + peak-point voltage= 9.7 V
\ No newline at end of file |