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 a82167d commit afc067fCopy full SHA for afc067f
src/methods/thermalBoundaryConditionsScript.js
@@ -146,7 +146,9 @@ export class ThermalBoundaryConditions {
146
convectionHeatTranfCoeff,
147
convectionExtTemp
148
) {
149
- if (this.meshDimension === "2D") {
+ if (this.meshDimension === "1D") {
150
+ // 1D code
151
+ } else if (this.meshDimension === "2D") {
152
Object.keys(this.boundaryConditions).forEach((boundaryKey) => {
153
if (this.boundaryConditions[boundaryKey][0] === "convection") {
154
const convectionCoeff = convectionHeatTranfCoeff[boundaryKey];
0 commit comments