-
|
Hello, I implemented the code So I was wondering what makes the phase diagram from the example so different when using the mc Database? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The database defines the so when you do possible_phases = database.phases.keys()it includes this phase in the set of phases PyCalphad considers, even though I don't think the database author intended that to be used when computing normal phase equilibria. If I change your definition of # possible_phases = database.phases.keys()
possible_phases = list(set(database.phases.keys()) - {"CL_FCC"}) |
Beta Was this translation helpful? Give feedback.


The database defines the
CL_FCCphase as:so when you do
it includes this phase in the set of phases PyCalphad considers, even though I don't think the database author intended that to be used when computing normal phase equilibria. If I change your definition of
possible_phases, I get the following phase diagram.