We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 290b661 commit c2e7ac3Copy full SHA for c2e7ac3
burnman/eos/dks_solid.py
@@ -294,12 +294,17 @@ def validate_parameters(self, params):
294
if "E_0" not in params:
295
params["E_0"] = float("nan")
296
297
- # First, let's check the EoS parameters for Tref
298
- bm.BirchMurnaghanBase.validate_parameters(bm.BirchMurnaghanBase(), params)
299
-
300
# Now check all the required keys for the
301
# thermal part of the EoS are in the dictionary
302
- expected_keys = ["Cv", "grueneisen_0", "q_0", "eta_s_0"]
+ expected_keys = [
+ "V_0",
+ "K_0",
+ "Kprime_0",
303
+ "Cv",
304
+ "grueneisen_0",
305
+ "q_0",
306
+ "eta_s_0",
307
+ ]
308
for k in expected_keys:
309
if k not in params:
310
raise KeyError("params object missing parameter : " + k)
0 commit comments