blob: bc5b01b7502f95cdc8f18e4991415e87b856524e (
plain)
1
2
3
4
5
6
7
8
|
clear all; clc;
disp("Ex 19_3")
m=100 //kg
k_G=0.35//m
I_G=m*k_G^2
printf('\n\nMoment of inertia of the spool about its mass centre is = %0.2f kgm^2',I_G)
//Applying Impulse Momentum Principle, we get 2 equtions with integral terms in them and on solving them, we get :
disp("w_2=1.05 rad/sec in clockwise direction")
|