-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Cannot handle uncertainties in quantities #8
Comments
possibly fixed in 1442f91 / v0.2.4a1 |
I'm running into similar issues while trying to run PyTeCK with ChemKED files with uncertainties in ignition delays. Specifically at this line, which makes
The ChemKED file that's causing this can be found here. |
@skrsna can you share the other files you were using when you ran into this error, so I can replicate the issue? |
As of v0.2.3, PyTeCK cannot handle ChemKED files with uncertainties (at least in ignition delay, and likely other quantities).
For example, in
eval_model
,doesn't work when the ignition delays have uncertainties, because
case.ignition_delay
is now aMeasurement
type that does not have the methodmagnitude
. Instead, it needs to becase.ignition_delay.to('second').value.magnitude
(I think).The text was updated successfully, but these errors were encountered: