Skip to content

Commit

Permalink
+ Batch-Ausgabe der D-Matrix-Option in Plattenbeul-Modul nun unabhäng…
Browse files Browse the repository at this point in the history
…ig von Spracheinstellung auf Englisch und ohne html-Auszeichnung;
  • Loading branch information
FloDX committed May 10, 2024
1 parent fed84d1 commit 4c4da56
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ public void writeResults(PrintStream out, BucklingModuleData data, Laminat lamin
String dMatrixOption;
if (data.getBucklingInput().isDtilde()) {
dmat = data.getLaminat().getLookup().lookup(CLT_Laminate.class).getDtildeMatrix();
dMatrixOption = NbBundle.getBundle(DMatrixPanel.class).getString("DtildeMatrix.name");
dMatrixOption = "D̃ matrix";
} else if(!data.getBucklingInput().isWholeD()) {
dmat = data.getLaminat().getLookup().lookup(CLT_Laminate.class).getDMatrixWithZeroD12D16();
dMatrixOption = NbBundle.getBundle(DMatrixPanel.class).getString("DmatrixD16D26zero.name");
dMatrixOption = "D matrix with D_{16} = D_{26} = 0";
} else {
dmat = data.getLaminat().getLookup().lookup(CLT_Laminate.class).getDMatrix();
dMatrixOption = NbBundle.getBundle(DMatrixPanel.class).getString("Dmatrix.name");
dMatrixOption = "Original D matrix";
}
out.println("********************************************************************************");
out.println(Utilities.centeredText("BUCKLING", 80));
Expand Down

0 comments on commit 4c4da56

Please sign in to comment.