Python Cantera MassFlowController won't extract mass from reactor
Clash Royale CLAN TAG #URR8PPP Python Cantera MassFlowController won't extract mass from reactor I am trying to build a hydrogen tank model (liquid-vapour) that includes heat addition over time through the tank walls, a venting valve that is activated at a given pressure and a constant fuel cell supply that is activated after a dormancy time. When I run the time integration, after some time (18000 sec in the code below), the MassFlowController mass flow is changed automatically, but it won't export any mass from the tank. Cantera is throwing an error shortly after that. This is a sample code: import cantera as ct """ Variables """ Tint = 20.24 #K Tamb = 293.0 #K Rho = 44.623 #kg/m3 TankVolume = 7.04 #m3 TankArea = 20.0 # m2 TankU = 0.36 Pvent = 7.0 #bar Psupply = 2.0 #bar msupply = 0.005 #kg/s DormTime = 5.0 #hrs TotTime = 10.0 #hrs """ Tank Reactor """ LH2 = ct.Hydrogen() LH2.TD = Tint, Rho LR = ct.Reactor(contents=L...