summaryrefslogtreecommitdiff
path: root/3648/CH13/EX13.3/Ex13_3.sce
blob: 4ef4fbcbea438510680f7fce902ad5c4e2164451 (plain)
1
2
3
4
5
6
7
8
9
//Example 13_3
clc();
clear;
//To find the tension required in string
m=0.002         //Units in Kg
l=0.6        //Units in meters
v=300     //Units in meters/sec
T=(m/l)*v^2     //Units in N
printf("Tension required in the string is T=%d N",T)