summaryrefslogtreecommitdiff
path: root/257/CH3/EX3.1/example_3_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '257/CH3/EX3.1/example_3_1.sce')
-rw-r--r--257/CH3/EX3.1/example_3_1.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/257/CH3/EX3.1/example_3_1.sce b/257/CH3/EX3.1/example_3_1.sce
new file mode 100644
index 000000000..25746735e
--- /dev/null
+++ b/257/CH3/EX3.1/example_3_1.sce
@@ -0,0 +1,8 @@
+//applying KVL we have Vi(t) = R*i(t) + 1/C * int(i(t)) dt
+// Vo(t) = 1/C * int(i(t)) dt
+
+syms s R C I
+Vi= R*I + I/(s*C)
+Vo = I/(C*s)
+
+disp(Vo/Vi,"transfer function=") \ No newline at end of file