In EnergyPlus source code, what does OAMFL, VAMFL, EAMFL, and CTMFL stand for?
In EnergyPlus source code, what does OAMFL, VAMFL, EAMFL, and CTMFL stand for?
First time here? Check out the Help page!
In EnergyPlus source code, what does OAMFL, VAMFL, EAMFL, and CTMFL stand for?
If you search the source code for references to these variables, you will find where they are defined. Here is the list where they are first initialized/defined.
I suggest using grep
(which can be installed on windows too).
cd EnergyPlus/src/EnergyPlus
grep -n --color=always -R OAMFL *.hh
DataHeatBalFanSys.hh:146: extern Array1D<Real64> OAMFL; // OUTDOOR AIR MASS FLOW (kg/s) for infiltration
I always want to pass -n --color=always
so I aliased grep to automatically include this and exclude flags
alias grep="/bin/grep -n --color=always --exclude='*.pyc' --exclude-dir='.git' --exclude-dir='.clangd' --exclude='compile_commands.json' --exclude='tags' --exclude-dir='.vscode' --exclude-dir='.ipynb' --exclude-dir='build' --exclude-dir='.tox' --exclude='*.swp'"
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2020-08-16 01:50:26 -0600
Seen: 239 times
Last updated: Aug 17 '20
@juhyun Bak we need more information to help you. What file in the source code conains these variables? If possible, can you include the permalink to the specific line(s) in the file(s) on the EnergyPlus Github? Or include the source code with these variables in your post?
EnergyPlus-9.2.0\src\EnergyPlus\ZoneContaminantPredictorCorrector.cc
I can find them in many places in the file, but one example is starting around Line 2065.