Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"properties" : [{
"model_part_name" : "Parts_Fluid",
"model_part_name" : "FluidModelPart.Parts_Fluid",
"properties_id" : 1,
"Material" : {
"Variables" : {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"properties" : [{
"model_part_name" : "Parts_Solid",
"model_part_name" : "ThermalModelPart.Parts_Solid",
"properties_id" : 2,
"Material" : {
"Variables" : {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import KratosMultiphysics.ConvectionDiffusionApplication


from convection_diffusion_analysis import ConvectionDiffusionAnalysis
from KratosMultiphysics.ConvectionDiffusionApplication.convection_diffusion_analysis import ConvectionDiffusionAnalysis

import sys
import time
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"solution_absolute_tolerance" : 1e-7,
"residual_relative_tolerance" : 1e-5,
"residual_absolute_tolerance" : 1e-7,
"problem_domain_sub_model_part_list" : ["Parts_Solid"],
"problem_domain_sub_model_part_list" : ["ThermalModelPart.Parts_Solid"],
"processes_sub_model_part_list" : ["TEMPERATURE_Solid","SolidThermalInterface2D_Solid_Interface"],
"time_stepping" : {
"time_step" : 0.1
Expand All @@ -101,8 +101,8 @@
"coupling_settings" : {
"max_iteration" : 10,
"temperature_relative_tolerance" : 1e-5,
"fluid_interfaces_list" : ["FluidThermalInterface2D_Fluid_Interface"],
"solid_interfaces_list" : ["SolidThermalInterface2D_Solid_Interface"]
"fluid_interfaces_list" : ["FluidThermalModelPart.FluidThermalInterface2D_Fluid_Interface"],
"solid_interfaces_list" : ["ThermalModelPart.SolidThermalInterface2D_Solid_Interface"]
}
},
"output_processes" : {
Expand Down Expand Up @@ -141,7 +141,7 @@
"process_name" : "GiDOutputProcess",
"help" : "This process writes postprocessing files for GiD",
"Parameters" : {
"model_part_name" : "ThermalModelPart.thermal_computing_domain",
"model_part_name" : "ThermalModelPart.Parts_Solid",
"output_name" : "test_cylinder_cooling_Re100_Pr2_solid",
"postprocess_parameters" : {
"result_file_configuration" : {
Expand Down Expand Up @@ -266,7 +266,7 @@
"kratos_module" : "KratosMultiphysics",
"process_name" : "AssignScalarVariableProcess",
"Parameters" : {
"model_part_name" : "Parts_Solid",
"model_part_name" : "ThermalModelPart.Parts_Solid",
"variable_name" : "HEAT_FLUX",
"value" : 0.0,
"constrained" : false
Expand Down
Loading