MeshSurfParam2.java 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package com.miniframe.aftercure;
  2. public class MeshSurfParam2 {
  3. /**
  4. * element_order QString 单元阶数选择 “linear”、“quadratic”)(default linear)
  5. * remove_duplicate_cad_faces QString 删除重复的cad面 bool (default yes)
  6. *
  7. * scaled_jacobian_threshold_value QString 缩放雅可比阈值 (real 0.001,when use param "element_order=quadratic")
  8. * optimisation QString 最优化 bool (default yes)when "correct_surface_intersections==yes,not useful"
  9. * correct_surface_intersections QString 纠正表面相交 (default yes)
  10. */
  11. private String element_order="linear";
  12. private String remove_duplicate_cad_faces="yes";
  13. private String scaled_jacobian_threshold_value="0.001";
  14. private String optimisation="yes";
  15. private String correct_surface_intersections="yes";
  16. public String getElement_order() {
  17. return element_order;
  18. }
  19. public void setElement_order(String element_order) {
  20. this.element_order = element_order;
  21. }
  22. public String getRemove_duplicate_cad_faces() {
  23. return remove_duplicate_cad_faces;
  24. }
  25. public void setRemove_duplicate_cad_faces(String remove_duplicate_cad_faces) {
  26. this.remove_duplicate_cad_faces = remove_duplicate_cad_faces;
  27. }
  28. public String getScaled_jacobian_threshold_value() {
  29. return scaled_jacobian_threshold_value;
  30. }
  31. public void setScaled_jacobian_threshold_value(String scaled_jacobian_threshold_value) {
  32. this.scaled_jacobian_threshold_value = scaled_jacobian_threshold_value;
  33. }
  34. public String getOptimisation() {
  35. return optimisation;
  36. }
  37. public void setOptimisation(String optimisation) {
  38. this.optimisation = optimisation;
  39. }
  40. public String getCorrect_surface_intersections() {
  41. return correct_surface_intersections;
  42. }
  43. public void setCorrect_surface_intersections(String correct_surface_intersections) {
  44. this.correct_surface_intersections = correct_surface_intersections;
  45. }
  46. }