diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1499/CH2 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1499/CH2')
-rw-r--r-- | 1499/CH2/EX2.2/q2.png | bin | 0 -> 7404 bytes | |||
-rw-r--r-- | 1499/CH2/EX2.2/q2.sce | 12 | ||||
-rw-r--r-- | 1499/CH2/EX2.3.a/q3.jpeg | bin | 0 -> 242299 bytes | |||
-rw-r--r-- | 1499/CH2/EX2.3.a/q3.sce | 12 | ||||
-rw-r--r-- | 1499/CH2/EX2.3/q3_st.jpeg | bin | 0 -> 86090 bytes | |||
-rw-r--r-- | 1499/CH2/EX2.3/q3_st.sce | 12 | ||||
-rw-r--r-- | 1499/CH2/EX2.5/q5.sce | 21 | ||||
-rw-r--r-- | 1499/CH2/EX2.9.a/q9_step.jpeg | bin | 0 -> 78394 bytes | |||
-rw-r--r-- | 1499/CH2/EX2.9.a/q9_step.sce | 18 | ||||
-rw-r--r-- | 1499/CH2/EX2.9/q9_impulse.jpeg | bin | 0 -> 84243 bytes | |||
-rw-r--r-- | 1499/CH2/EX2.9/q9_impulse.sce | 12 |
11 files changed, 87 insertions, 0 deletions
diff --git a/1499/CH2/EX2.2/q2.png b/1499/CH2/EX2.2/q2.png Binary files differnew file mode 100644 index 000000000..c1c5cc9e4 --- /dev/null +++ b/1499/CH2/EX2.2/q2.png diff --git a/1499/CH2/EX2.2/q2.sce b/1499/CH2/EX2.2/q2.sce new file mode 100644 index 000000000..dd0d9240e --- /dev/null +++ b/1499/CH2/EX2.2/q2.sce @@ -0,0 +1,12 @@ +
+
+s=%s; // first create a variable
+num=9;
+den=9+4*s+s^2;
+TF=syslin('c',num,den)
+
+t=linspace(0,5,500);
+imp_res=csim('imp',t,TF);
+plot(t,imp_res)
+xgrid()
+xtitle('Impulse response','time','response');
diff --git a/1499/CH2/EX2.3.a/q3.jpeg b/1499/CH2/EX2.3.a/q3.jpeg Binary files differnew file mode 100644 index 000000000..c56e3d515 --- /dev/null +++ b/1499/CH2/EX2.3.a/q3.jpeg diff --git a/1499/CH2/EX2.3.a/q3.sce b/1499/CH2/EX2.3.a/q3.sce new file mode 100644 index 000000000..520334a15 --- /dev/null +++ b/1499/CH2/EX2.3.a/q3.sce @@ -0,0 +1,12 @@ +
+
+s=%s; // first create a variable
+num=10;
+den=10+2*s+s^2;
+TF=syslin('c',num,den)
+
+t=linspace(0,5,500);
+imp_res=csim('imp',t,TF);
+plot(t,imp_res)
+xgrid()
+xtitle('Impulse response','time','response');
diff --git a/1499/CH2/EX2.3/q3_st.jpeg b/1499/CH2/EX2.3/q3_st.jpeg Binary files differnew file mode 100644 index 000000000..91b9e555a --- /dev/null +++ b/1499/CH2/EX2.3/q3_st.jpeg diff --git a/1499/CH2/EX2.3/q3_st.sce b/1499/CH2/EX2.3/q3_st.sce new file mode 100644 index 000000000..137d7698c --- /dev/null +++ b/1499/CH2/EX2.3/q3_st.sce @@ -0,0 +1,12 @@ +
+
+s=%s; // first create a variable
+num=10;
+den=10+2*s+s^2;
+TF=syslin('c',num,den)
+
+t=linspace(0,5,500);
+step_res=csim('step',t,TF);
+plot(t,step_res)
+xgrid()
+xtitle('Step response','time','response');
diff --git a/1499/CH2/EX2.5/q5.sce b/1499/CH2/EX2.5/q5.sce new file mode 100644 index 000000000..7396e52e6 --- /dev/null +++ b/1499/CH2/EX2.5/q5.sce @@ -0,0 +1,21 @@ +
+
+s=%s; // first create a variable
+Wn=%Wn;
+Wd=%Wd;
+
+
+num=1;
+den=10*s+s^2;
+TF=syslin('c',num,den)
+
+[wn,z] = damp(TF)
+zeta=z/(2*wn)
+
+ts=4/(zeta*wn)
+
+t=linspace(0,5,500);
+step_res=csim('step',t,TF);
+plot(t,step_res)
+xgrid()
+xtitle('Step response','time','response');
diff --git a/1499/CH2/EX2.9.a/q9_step.jpeg b/1499/CH2/EX2.9.a/q9_step.jpeg Binary files differnew file mode 100644 index 000000000..ad007dc6a --- /dev/null +++ b/1499/CH2/EX2.9.a/q9_step.jpeg diff --git a/1499/CH2/EX2.9.a/q9_step.sce b/1499/CH2/EX2.9.a/q9_step.sce new file mode 100644 index 000000000..cd7d71c6f --- /dev/null +++ b/1499/CH2/EX2.9.a/q9_step.sce @@ -0,0 +1,18 @@ +
+
+s=%s; // first create a variable
+Wn=%Wn;
+Wd=%Wd;
+
+
+num=2*s+1;
+den=s^2;
+TF=syslin('c',num,den)
+
+
+
+t=linspace(0,5,500);
+step_res=csim('step',t,TF);
+plot(t,step_res)
+xgrid()
+xtitle('Step response','time','response');
diff --git a/1499/CH2/EX2.9/q9_impulse.jpeg b/1499/CH2/EX2.9/q9_impulse.jpeg Binary files differnew file mode 100644 index 000000000..3720dd8d1 --- /dev/null +++ b/1499/CH2/EX2.9/q9_impulse.jpeg diff --git a/1499/CH2/EX2.9/q9_impulse.sce b/1499/CH2/EX2.9/q9_impulse.sce new file mode 100644 index 000000000..303aa9fdd --- /dev/null +++ b/1499/CH2/EX2.9/q9_impulse.sce @@ -0,0 +1,12 @@ +
+
+s=%s; // first create a variable
+num=2*s+1;
+den=s^2;
+TF=syslin('c',num,den)
+
+t=linspace(0,5,500);
+imp_res=csim('imp',t,TF);
+plot(t,imp_res)
+xgrid()
+xtitle('Impulse response','time','response');
|