blob: ad9d582a1376389b1a22c25af6573ee6142ce4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
x=32.5//in
y=33.7//in
h=8//in
//CALCULATIONS
C=sqrt((x)^2/(4*y*h))//ft
//RESULTS
printf('the coefficient of velocity=% f ft',C)
|