FinbarArgus

Results 9 comments of FinbarArgus

Changing tau_m*0.001{s_per_millis} to tau_m/1000{millis_per_s} fixes the warning, but we should be able to do both.

Okay, will do, sorry. Also, to add to this... Only one type of error/warning gets shown at once, i.e. my model currently has an error where something is uninitialised, which...

Okay, also, after fixing the unit issues (hacky fix changing the equations, not fixing this original issue), I still don't get any error messages detailing where my underconstraint is happening....

Finally found it! I had `var tau_c: millis {pub: in};` `tau_c = ...` instead of `var tau_c: millis {pub: out};` `tau_c = ...` Which is interesting, because I would have...

I'm using this version farg967:~/software/OpenCOR-0-7-1-Linux/python/bin$ ./pip freeze | grep libcellml libcellml==0.5.0 And this is how I check for errors: https://github.com/FinbarArgus/circulatory_autogen/blob/7b0b6fb6e5a60e40fd65448dada09553f4d56bf4/src/generators/CVSCellMLGenerator.py#L74-L93

The alias part is better explained here https://github.com/cellml/libcellml/issues/1171

Hi @agarny and @nickerso , Thanks for the replies. "For instance, say that you have a^b with b initialised using a variable which is not a constant. This will, therefore,...

Got it! That makes sense, thank you. Understood. Would we be able to switch specific warnings off? I want to use libCellMLs error checking in Circulatory Autogen for users to...