summaryrefslogtreecommitdiff
path: root/28/CH3/EX3.3.c/ex3_3_3.sce
blob: eae27d0c67f5ce16ffe182239c2bd96471480dc6 (plain)
1
2
3
4
5
6
7
8
9
// under stalled conditions
syms Kg K1 D;
A=60.8;
A*K1=Kg*D;
// given Kg=100 
Kg=100;
K1=50;
D=(A*K1)/Kg;
disp(D,"upslope=")