You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to activate the Qa calculations (here) by switching the Soilairefc to be = 1 (here), I received the error below error (the C6_a variable is not recognized).
A simple fix is to add the C6_a to the defined variable list here of the assembleCoefficientMatrices function and it will be solved.
The fix can be added after line 18 and has to be within an if statement (like below), because C6_a is not defined if Soilairefc == 0 (which is the default setting here)
if ModelSettings.Soilairefc == 1
C6_a = EnergyMatrices.C6_a;
end
The text was updated successfully, but these errors were encountered:
While trying to activate the
Qa
calculations (here) by switching theSoilairefc
to be = 1 (here), I received the error below error (theC6_a
variable is not recognized).A simple fix is to add the
C6_a
to the defined variable list here of theassembleCoefficientMatrices
function and it will be solved.The fix can be added after line 18 and has to be within an
if
statement (like below), becauseC6_a
is not defined ifSoilairefc == 0
(which is the default setting here)if ModelSettings.Soilairefc == 1
C6_a = EnergyMatrices.C6_a;
end
The text was updated successfully, but these errors were encountered: