diff options
author | prashantsinalkar | 2018-02-03 10:59:42 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 10:59:42 +0530 |
commit | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (patch) | |
tree | 612077a22c8142c0ae754ec11882a4e7d5dc25a4 /3875/CH1/EX1.1 | |
parent | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (diff) | |
download | Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.gz Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.tar.bz2 Scilab-TBC-Uploads-d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059.zip |
Modified the code
Diffstat (limited to '3875/CH1/EX1.1')
-rw-r--r-- | 3875/CH1/EX1.1/1_1.txt | 2 | ||||
-rw-r--r-- | 3875/CH1/EX1.1/Ex1_1.sce | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/3875/CH1/EX1.1/1_1.txt b/3875/CH1/EX1.1/1_1.txt index 6d1ee2ec9..8b15a9380 100644 --- a/3875/CH1/EX1.1/1_1.txt +++ b/3875/CH1/EX1.1/1_1.txt @@ -1,2 +1,2 @@ -Resistive force = 2.31e-03 newton/s/meter
+Resistive force = 2.31e-03 newton-s/meter
Relaxation time = 86.56 s
\ No newline at end of file diff --git a/3875/CH1/EX1.1/Ex1_1.sce b/3875/CH1/EX1.1/Ex1_1.sce index c20e0ced8..e017a533a 100644 --- a/3875/CH1/EX1.1/Ex1_1.sce +++ b/3875/CH1/EX1.1/Ex1_1.sce @@ -9,5 +9,5 @@ damp_omega=log(2)/60 //amplitude of damped oscillator for A/C = 1/2 in rad/s c= 2*m*damp_omega
tau= 1/damp_omega
-mprintf("Resistive force = %0.2e newton/s/meter \n",c)
+mprintf("Resistive force = %0.2e newton-s/meter \n",c)
mprintf("Relaxation time = %2.2f s",tau) //The answer provided in the textbook is wrong.
|