summaryrefslogtreecommitdiff
path: root/3648/CH24/EX24.1/Ex24_1.sce
blob: b3e916180c7efdc1bc0ded6fcbb24187a1a179a4 (plain)
1
2
3
4
5
6
7
8
9
//Example 24_1
clc();
clear;
//To find the angle at which the reinforcement line occurs
n=2    //units in constant
lamda=0.7       //units in cm
d=2        //units in cm
theta2=asin((n*lamda)/d)*180/%pi     //Units in degrees
printf("The angle at which the reinforcement line occurs is theta2=%d degrees",theta2)