diff options
Diffstat (limited to '569/CH4/EX4.15/4_15.sci')
-rwxr-xr-x | 569/CH4/EX4.15/4_15.sci | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/569/CH4/EX4.15/4_15.sci b/569/CH4/EX4.15/4_15.sci new file mode 100755 index 000000000..0b9208a63 --- /dev/null +++ b/569/CH4/EX4.15/4_15.sci @@ -0,0 +1,9 @@ +// Calculate natural frequency and setteling time
+clc;
+K=60*10^3;
+M=30;
+wn=(K/M)^0.5;
+disp(wn,'natural frequency (rad/sec)')
+eta=0.7;
+ts=4/(eta*wn);
+disp(ts,'setteling time (s)')
\ No newline at end of file |