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
3 changes: 2 additions & 1 deletion ansys/api/discovery/v0/assignments/fan.proto
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ service Fan
}

message InternalFanAssignmentCreationRequest{
DoubleSidedScopedCreationData creation_data = 1;
ScopedCreationData creation_data = 1;
ansys.api.dbu.v0.PhysicsEntityIdentifier fan_id = 2;
InternalFanAssignmentProperties internal_fan_assignment_properties = 3;
}
Expand Down Expand Up @@ -74,6 +74,7 @@ message InternalFanAssignmentProperties {
Quantity hub_radius = 3;
Quantity tip_radius = 4;
bool is_swirling = 5;
optional ansys.api.dbu.v0.EntityIdentifier inlet_face = 6;
}

enum ExternalFanSpecification
Expand Down
8 changes: 4 additions & 4 deletions ansys/api/discovery/v0/connections/contact.proto
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ service Contact
rpc ChangeAdjustGapOrOverlap(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeMakeJustTouching(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeIdealize(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeSpecifyThermalConductance(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeSpecifyThermalConductanceFromThicknessAndMaterial(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeSpecifyThermalConductance(ChangeSpecifyThermalConductanceRequest) returns (ChangeResponse);
rpc ChangeSpecifyElectricConductance(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeSpecifyElectricConductanceFromThicknessAndMaterial(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeThermalContactConductance(ChangeQuantityRequest) returns (ChangeResponse);
Expand Down Expand Up @@ -89,14 +88,15 @@ message ContactProperties {
bool adjust_gap_or_overlap = 10;
bool make_just_touching = 11;
bool idealize = 12;
bool specify_thermal_conductance = 13;
bool specify_thermal_conductance_from_thickness_and_material = 14;
bool specify_thermal_conductance = 13; // OBSOLETE FROM VERSION 2026.1 ONWARDS
bool specify_thermal_conductance_from_thickness_and_material = 14; // OBSOLETE FROM VERSION 2026.1 ONWARDS
bool specify_electric_conductance = 15;
bool specify_electric_conductance_from_thickness_and_material = 16;
Quantity thermal_contact_conductance = 17;
Quantity thermal_conductance_thickness = 18;
Quantity electrical_contact_conductance = 19;
Quantity electrical_conductance_thickness = 20;
ThermalConductanceOptionType thermal_conductance_option = 21;
}

message ContactDefinition {
Expand Down
7 changes: 4 additions & 3 deletions ansys/api/discovery/v0/connections/contactgroup.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ service ContactGroup
rpc ChangeAdjustGapOrOverlap(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeMakeJustTouching(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeIdealize(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeSpecifyThermalConductance(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeSpecifyThermalConductance(ChangeSpecifyThermalConductanceRequest) returns (ChangeResponse);
rpc ChangeSpecifyThermalConductanceFromThicknessAndMaterial(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeSpecifyElectricConductance(ChangeBooleanRequest) returns (ChangeResponse);
rpc ChangeSpecifyElectricConductanceFromThicknessAndMaterial(ChangeBooleanRequest) returns (ChangeResponse);
Expand Down Expand Up @@ -70,14 +70,15 @@ message ContactGroupProperties {
bool adjust_gap_or_overlap = 10;
bool make_just_touching = 11;
bool idealize = 12;
bool specify_thermal_conductance = 13;
bool specify_thermal_conductance_from_thickness_and_material = 14;
bool specify_thermal_conductance = 13; // OBSOLETE FROM VERSION 2026.1 ONWARDS
bool specify_thermal_conductance_from_thickness_and_material = 14; // OBSOLETE FROM VERSION 2026.1 ONWARDS
bool specify_electric_conductance = 15;
bool specify_electric_conductance_from_thickness_and_material = 16;
Quantity thermal_contact_conductance = 17;
Quantity thermal_conductance_thickness = 18;
Quantity electrical_contact_conductance = 19;
Quantity electrical_conductance_thickness = 20;
ThermalConductanceOptionType thermal_conductance_option = 21;
}

message ContactGroupDefinition {
Expand Down
6 changes: 4 additions & 2 deletions ansys/api/discovery/v0/connections/fluidinterface.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ service FluidInterface
{
rpc ChangeFluidInterfaceType(ChangeFluidInterfaceTypeRequest) returns (ChangeResponse);
rpc ChangeFluidInterfaceFaceGroupingMethod(ChangeFluidInterfaceFaceGroupingMethodRequest) returns (ChangeResponse);
rpc ChangeFluidInterfaceSpecifyConductanceMethod(ChangeFluidInterfaceConductanceMethod) returns (ChangeResponse);
rpc ChangeFluidInterfaceConductanceMethod(ChangeFluidInterfaceConductanceMethodRequest) returns(ChangeResponse);

rpc ChangeFluidInterfaceThermalMaterialAssignment(ChangeAssignmentRequest) returns (ChangeResponse);
rpc ChangeFluidInterfaceThermalConductance(ChangeQuantityRequest) returns (ChangeResponse);
Expand Down Expand Up @@ -49,14 +49,16 @@ enum FluidInterfaceFaceGroupingMethod {
NOGROUPING = 2;
}

message ChangeFluidInterfaceConductanceMethod{
message ChangeFluidInterfaceConductanceMethodRequest{
ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
FluidInterfaceFaceThermalConductanceMethod thermal_conductivity_method = 2;
ThermalConductanceOptionType thermal_conductance_option = 3;
}

enum FluidInterfaceFaceThermalConductanceMethod {
INSULATED = 0;
THERMALCONDUCTANCE = 1;
THICKNESSANDCONDUCTIVITY = 2;
THICKNESSANDMATERIAL = 3;
CONDUCTOR = 4;
}
16 changes: 15 additions & 1 deletion ansys/api/discovery/v0/discoverymodels.proto
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ message ChangeDoubleRequest{
}

message ChangeAssignmentRequest{
ansys.api.dbu.v0.PhysicsEntityIdentifier assigner_object_id = 1;
ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
ansys.api.dbu.v0.PhysicsEntityIdentifier referenced_object_id = 2;
}

Expand Down Expand Up @@ -333,4 +333,18 @@ enum QuantityType {
QUANTITY_TYPE_WARPING_MOMENT_OF_INERTIA=79;
QUANTITY_TYPE_NONE=80;
QUANTITY_TYPE_UNKNOWN = 81;
}

enum ThermalConductanceOptionType {
THERMALCONDUCTANCEOPTIONTYPE_PERFECT_CONDUCTOR = 0;
THERMALCONDUCTANCEOPTIONTYPE_PERFECT_INSULATOR = 1;
THERMALCONDUCTANCEOPTIONTYPE_VALUE = 2;
THERMALCONDUCTANCEOPTIONTYPE_THICKNESS_AND_MATERIAL = 3;
THERMALCONDUCTANCEOPTIONTYPE_THICKNESS_AND_CONDUCTIVITY = 4;
}

message ChangeSpecifyThermalConductanceRequest{
ansys.api.dbu.v0.PhysicsEntityIdentifier object_id = 1;
bool legacy_request_data = 2;
ThermalConductanceOptionType conductance_type = 3;
}