blob: 2ec650bee462e2adc22cebb6248dbaadc5c595da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Exa 1.33
clc;
clear;
//Given
W = 0.005; // Weight in Kg
l = 2.4*10^-2; // Distance in m
Td = 1.05*10^-4; // Deflection torque in kg-m
// Solution
Theta = asind(Td/(W*l));
printf('Deflection torque is given by, Td = W*l*sin(theta)\n Therefore theta = %.1f degrees \n',Theta);
|