summaryrefslogtreecommitdiff
path: root/3785/CH4/EX4.8/Ex4_8.sce
blob: d9b7d71202ef68742f08380fadec744356d74022 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Example 4_8
clc;funcprot(0);
// Given data
rho=8.6*10^2;// The density of gasoline in kg/m^3
L=1.0;// The tank length in m
H=0.6;// The tank height in m
g=9.807;// The acceleration due to gravity in m/s^2

// Calculation
p=rho*g*(H+(2*L));// Pa
printf("\nThe maximum pressure in the tank,p=p_a+%1.3e Pa",p)