summaryrefslogtreecommitdiff
path: root/2975/CH23/EX23.1w/Ex23_1w.sce
blob: 9f4d43803a4909de9d12abd8eae55efe92b084e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//developed in windows 8 operating system 64bit
//platform Scilab 5.4.1
//example 23_1w

clc;clear;
//Given Data
temp=373.15;//Temperature at steam point (Unit Kelvin)
press=1.5*10^4;//Pressure at steam point(Unit Pascal)

//calculation
ptr=(273.16*press)/temp;//Calculation of pressure at triple point of water (Unit : pascal)

 
disp(ptr,"Pressure of water at triple is (unit: Pascal)");