diff options
Diffstat (limited to '3480/CH11/EX11.2/Ex11_2.sce')
-rw-r--r-- | 3480/CH11/EX11.2/Ex11_2.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3480/CH11/EX11.2/Ex11_2.sce b/3480/CH11/EX11.2/Ex11_2.sce new file mode 100644 index 000000000..2d5dc2f01 --- /dev/null +++ b/3480/CH11/EX11.2/Ex11_2.sce @@ -0,0 +1,18 @@ +clc
+
+T=5// sec
+a=3// cm
+alpha=%pi/3
+w=(2*%pi/T)
+//solution a:
+//for
+t=0//sec
+y=a*sin(w*t+alpha)
+disp(y,"y in cm is=")
+
+//solution b:
+//for
+t=12//sec
+y=a*sin(w*t+alpha)
+disp(y,"y in cm is=")
+
|