Hello,
I have a short question about using the MASS FLOW device. My intention is to
measure the MASS FLOWs through a door e.g. of the Steckler case.
FDS allows to measure the total mass flow (MF), the positive (MFp) and negative (MFn) mass flow through the door.
My expection is that: MF = MFp - MFn
This should be independent of the ignition source, any reaction or temperature.
Unfortunately, I do not see this in the simulation Steckler014 when adding these lines:
&DEVC FYI = '2A', ID = 'MASS FLOW', XB = 2.85, 2.85, -0.37, 0.37, 0., 1.83, QUANTITY = 'MASS FLOW', /
&DEVC FYI = '2A', ID = 'MASS FLOW +', XB = 2.85, 2.85, -0.37, 0.37, 0., 1.83, QUANTITY = 'MASS FLOW +', /
&DEVC FYI = '2A', ID = 'MASS FLOW -', XB = 2.85, 2.85, -0.37, 0.37, 0., 1.83, QUANTITY = 'MASS FLOW -', /
The difference between the output of "MASS FLOW" and the calculation "MASS FLOW +" - "MASS FLOW -" is very small, but still not zero.
The difference varies in time as well.
For other cases with larger HRR of the burner this difference seems to get larger.
I tried to understand a bit the source. As far as I got it, the calculation is done in dump.f90 (around lines 4963 ):
SELECT CASE(IND)
CASE(111:113)
FLOW = FLOW + VEL*HMFAC*AREA
CASE(114:116)
FLOW = FLOW + MAX(0._EB,VEL)*HMFAC*AREA
CASE(117:119)
FLOW = FLOW - MIN(0._EB,VEL)*HMFAC*AREA
END SELECT
From this I still expect that there should be no difference...!?
Do you have an explanation for the difference in the simulation? Probably, I am doing something wrong...
Thanks in advance!
Best Regards
Fabian