#*--------------------------------------------------------------------- * This file is property of the author and cannot be used, copyed * or modified without permission. * * Copyright (C) 2002-2004 the author *---------------------------------------------------------------------- * Author: Rafael de Pelegrini Soares * $Id: sample_tanks.mso 1 2006-06-20 17:33:53Z rafael $ *---------------------------------------------------------------------- * * EMSO sample file. * * Buffer tank series. * *-------------------------------------------------------------------*# using "stage_separators/tank"; FlowSheet TresTanques DEVICES Fin as flow_vol; Tanque1 as tank_simplified; Tanque2 as tank_simplified; Tanque3 as tank_simplified; CONNECTIONS Fin to Tanque1.Fin; Tanque1.Fout to Tanque2.Fin; Tanque2.Fout to Tanque3.Fin; SET Tanque2.k = 8 * "m^2.5/h"; Tanque2.A = 4 * "m^2"; SPECIFY "Vazao de entrada" Fin = 10 * "m^3/h"; INITIAL "altura inicial" Tanque1.h = 1 * "m"; Tanque2.h = 2 * "m"; Tanque3.h = 1 * "m"; OPTIONS time = [0:0.1:2] * "h" ; outputLevel = "high"; end