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
dydt
cv_avg
Just a warning to anyone still using this: there is a bug in dydt.c in the function computing cv_avg, here.
dydt.c
pyJac/pyjac/core/rate_subs.py
Line 2431 in 5f54b2d
There needs to be a "+" sign prior to opening the next parentheses, otherwise you end up with code that looks like this:
double cv_avg = (cv[0] * y[1]) + (cv[1] * y[2]) + (cv[2] * y[3]) + (cv[3] * y[4])(cv[4] * y_N);
The text was updated successfully, but these errors were encountered:
Heh, you can see we fixed it for conp here:
conp
Line 2281 in 5f54b2d
Sorry, something went wrong.
I think this should do it? #44
I haven't run this in awhile, so if you test it and it looks good, let me know and I'll merge it in.
@arghdos Yes, that fixed it! Thanks for the quick response.
Once I fixed that, the compiler found another bug here:
Line 2362 in 5f54b2d
There should be a comma before the rho so that the call the eval_conc_rho is correct. After I made that change manually, it compiled!
rho
eval_conc_rho
No branches or pull requests
Just a warning to anyone still using this: there is a bug in
dydt.c
in the function computingcv_avg
, here.pyJac/pyjac/core/rate_subs.py
Line 2431 in 5f54b2d
There needs to be a "+" sign prior to opening the next parentheses, otherwise you end up with code that looks like this:
The text was updated successfully, but these errors were encountered: