-
Notifications
You must be signed in to change notification settings - Fork 19
Description
When running a case using the Kratos PFEM problem type on Windows, extra modules with properties_id = 0 appear in the PFEMFluidMaterials.json file.
These entries prevent the analysis from running. Could you please check this issue? On Linux, everything seems to work correctly.
I’ve copied the PFEMFluidMaterials.json file below, highlighting the critical parts in bold, and attached the entire test case in case you’d like to reproduce it.
Thank you!
{
"properties" : [{
"model_part_name" : "PfemFluidModelPart",
"properties_id" : 0,
"Material" : {
"Variables" : []
}
},{
"model_part_name" : "PfemFluidModelPart.Parts_Fluid",
"properties_id" : 1,
"Material" : {
"constitutive_law" : {
"name" : "Newtonian2DLaw"
},
"Variables" : {
"DENSITY" : 1000.0,
"DYNAMIC_VISCOSITY" : 0.001,
"BULK_MODULUS" : 2100000000.0
},
"Tables" : null
}
},{
"model_part_name" : "PfemFluidModelPart",
"properties_id" : 0,
"Material" : {
"Variables" : []
}
},{
"model_part_name" : "PfemFluidModelPart.Parts_Rigid_Walls",
"properties_id" : 2,
"Material" : {
"Variables" : [],
"Tables" : null
}
}]
}