Hi Kofi,
The error you’re seeing (No such type: ‘stoichiometric’) is a YAML syntax issue. The keyword stoichiometric used in Cantera’s older CTI input format was renamed to fixed-stoichiometry in the YAML format.
So your phases section should look like this:
phases: - name: LiCl_solid thermo: fixed-stoichiometry species: [LiCl(s)] - name: pure_water thermo: fixed-stoichiometry species: [H2O(l)]If your YAML file was converted from a CTI file using cti2yaml, it should have automatically been updated to the new name. But if you converted this manually or with the help of an AI tool, you’ll want to double-check all the model names, as several were renamed during the CTI to YAML transition.
Regards,
Ray