Advertisement
 

EPANET template projects for different water temperatures

EPANET's relative viscosity parameters has to be adjusted according to the water temperature. You can do this manually or select your water temperature below and download a template project with an according relative viscosity.

Viscosity of water at relative to that of water at 20°C: 1.000 Download template_20_degrees_celsius.inp

Relative viscosity data

Water temperature in °CViscosity relative to that of water at 20°C
11.720
21.666
31.612
41.558
51.504
61.463
71.421
81.380
91.338
101.297
111.265
121.232
131.200
141.167
151.135
161.108
171.081
181.054
191.027
201.000
210.978
220.956
230.933
240.911
250.889
260.870
270.852
280.833
290.815
300.796
310.782
320.767
330.753
340.738
350.724
360.709
370.695
380.680
390.666
400.651
410.646
420.640
430.634
440.628
450.622
460.616
470.610
480.604
490.598
500.592
510.586
520.580
530.574
540.568
550.562
560.556
570.550
580.544
590.538
600.532
610.526
620.520
630.514
640.508
650.502
660.496
670.490
680.484
690.478
700.472
710.466
720.460
730.454
740.448
750.442
760.436
770.430
780.424
790.419
800.413
810.407
820.401
830.395
840.389
850.383
860.377
870.371
880.365
890.359
900.353
910.347
920.341
930.335
940.329
950.323
960.317
970.311
980.305
990.299
1000.293

The viscosity data (viscosity of water relative to the viscosity of water at 20°C) was obtained using linear interpolation using a handful of kinematic viscosity values using the following R code:

t <- c(0,5,10,15,20,25,30,40,100)
nu <- c(1.792,1.519,1.31,1.146,1.01,0.898,0.804,0.658,0.296)
r <- approx(t,nu, 1:100)
round(r$y/1.01,3)

In EPANET, choose Project->Analysis Options... in order to adjust the relative viscosity parameter.

In your INP file look for Viscosity in the [OPTIONS] section:

[OPTIONS]
 Units              	LPS
 Headloss           	D-W
 Specific Gravity   	1
 Viscosity          	1.000
Advertisement