We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get an error when the input bioavailability (f=) to the dose_absorb macro is already a Parameter.
f=
dose_absorb
Parameter
Offending code:
if not isinstance(f, Parameter): F = Parameter("F_{0}_{1}".format(monomer_name, comp_name), f) params_created.add(F) pre_0_expr = Expression('precursor_0', (dose_expr * F))
When the argument f is a Parameter, the variable F is not created and the pre_0_expr expression errors out.
f
F
pre_0_expr
The text was updated successfully, but these errors were encountered:
Fixed with PR #19
Sorry, something went wrong.
No branches or pull requests
I get an error when the input bioavailability (
f=
) to thedose_absorb
macro is already aParameter
.Offending code:
When the argument
f
is aParameter
, the variableF
is not created and thepre_0_expr
expression errors out.The text was updated successfully, but these errors were encountered: