blob: 1854dce33326968917d948bff9e25bbf0331756f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Ex:6.2
clc;
clear;
close;
w=40*10^-3;// cable weighing in kg/m
R=20*10^-2;// radius of curvature in meter
n=0.19;// co-efficient of friction
x=(3.14/4);// angle in rad
si=42.36;// pulling tension at the entrance in kg
X=(si/(w*R));//
Y=asinh(si/(w*R));
Z=w*R*sinh(n*x+Y);//puttling tension at the exit of an optical cable
printf("The puttling tension at the exit of an optical cable =%f kg", Z);
|