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
Describe the bug Fails cloning Diffusion objects when components have been added after creation
To Reproduce SystemInterface airThermoSystem = neqsim.thermo.Fluid.create("air"); airThermoSystem.addComponent("CO2", 0.0); airThermoSystem.addComponent("water", 0.0); airThermoSystem.clone();
Expected behavior Not failing in Diffusivity clone method
The text was updated successfully, but these errors were encountered:
See pr #351 for where error is seen
Sorry, something went wrong.
Adding airThermoSystem.initPhysicalProperties(); before calling clone() seems to reinitialize diffusion object
airThermoSystem.initPhysicalProperties();
No branches or pull requests
Describe the bug
Fails cloning Diffusion objects when components have been added after creation
To Reproduce
SystemInterface airThermoSystem = neqsim.thermo.Fluid.create("air");
airThermoSystem.addComponent("CO2", 0.0);
airThermoSystem.addComponent("water", 0.0);
airThermoSystem.clone();
Expected behavior
Not failing in Diffusivity clone method
The text was updated successfully, but these errors were encountered: