12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package com.miniframe.aftercure;
- public class MeshSurfParam2 {
- /**
- * element_order QString 单元阶数选择 “linear”、“quadratic”)(default linear)
- * remove_duplicate_cad_faces QString 删除重复的cad面 bool (default yes)
- *
- * scaled_jacobian_threshold_value QString 缩放雅可比阈值 (real 0.001,when use param "element_order=quadratic")
- * optimisation QString 最优化 bool (default yes)when "correct_surface_intersections==yes,not useful"
- * correct_surface_intersections QString 纠正表面相交 (default yes)
- */
- private String element_order="linear";
- private String remove_duplicate_cad_faces="yes";
- private String scaled_jacobian_threshold_value="0.001";
- private String optimisation="yes";
- private String correct_surface_intersections="yes";
- public String getElement_order() {
- return element_order;
- }
- public void setElement_order(String element_order) {
- this.element_order = element_order;
- }
- public String getRemove_duplicate_cad_faces() {
- return remove_duplicate_cad_faces;
- }
- public void setRemove_duplicate_cad_faces(String remove_duplicate_cad_faces) {
- this.remove_duplicate_cad_faces = remove_duplicate_cad_faces;
- }
- public String getScaled_jacobian_threshold_value() {
- return scaled_jacobian_threshold_value;
- }
- public void setScaled_jacobian_threshold_value(String scaled_jacobian_threshold_value) {
- this.scaled_jacobian_threshold_value = scaled_jacobian_threshold_value;
- }
- public String getOptimisation() {
- return optimisation;
- }
- public void setOptimisation(String optimisation) {
- this.optimisation = optimisation;
- }
- public String getCorrect_surface_intersections() {
- return correct_surface_intersections;
- }
- public void setCorrect_surface_intersections(String correct_surface_intersections) {
- this.correct_surface_intersections = correct_surface_intersections;
- }
- }
|