liquid.def.json 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. {
  2. "version": 2,
  3. "name": "Liquid",
  4. "inherits": "fdmprinter",
  5. "metadata": {
  6. "visible": true,
  7. "author": "Liquid 3D",
  8. "manufacturer": "Liquid 3D",
  9. "file_formats": "text/x-gcode",
  10. "icon": "icon_ultimaker2",
  11. "platform": "liquid_platform.stl",
  12. "has_machine_quality": true,
  13. "has_materials": true,
  14. "has_variant_buildplates": false,
  15. "has_variants": true,
  16. "exclude_materials": [ "generic_hips", "generic_pva", "structur3d_dap100silicone" ],
  17. "preferred_variant_name": "VO 0.4",
  18. "preferred_quality_type": "normal",
  19. "variants_name": "Extruder",
  20. "supports_usb_connection": true,
  21. "nozzle_offsetting_for_disallowed_areas": false,
  22. "weight": -1,
  23. "machine_extruder_trains":
  24. {
  25. "0": "liquid_extruder"
  26. }
  27. },
  28. "overrides": {
  29. "machine_name": { "default_value": "Liquid" },
  30. "machine_width": { "default_value": 200 },
  31. "machine_depth": { "default_value": 200 },
  32. "machine_height": { "default_value": 200 },
  33. "machine_heated_bed": { "default_value": true },
  34. "machine_nozzle_heat_up_speed": { "default_value": 1.4 },
  35. "machine_nozzle_cool_down_speed": { "default_value": 0.8 },
  36. "machine_gcode_flavor": { "default_value": "RepRap (RepRap)" },
  37. "machine_start_gcode": {
  38. "default_value": "G21 ; set units to millimeters\nG90 ; use absolute positioning\nM83 ; relative extrusion mode\nM104 S{material_print_temperature_layer_0} ; set extruder temp\nM140 S{material_bed_temperature_layer_0} ; set bed temp\nM190 S{material_bed_temperature_layer_0} ; wait for bed temp\nM109 S{material_print_temperature_layer_0} ; wait for extruder temp\nG32 ; mesh bed leveling\nG92 E0.0 ; reset extruder distance position\nG1 X0 Y-2 Z0.3 F4000.0 ; go outside print area\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X110.0 E15.5 F1000.0 ; intro line\nG92 E0.0 ; reset extruder distance position"
  39. },
  40. "machine_end_gcode": {
  41. "default_value": "M104 S0 ; turn off extruder\nM140 S0 ; turn off heatbed\nM106 S0 ; turn off fan\nG91 ; relative positioning\nG1 Z1 F360 ; lift Z by 1mm\nG90 ; absolute positioning\nG1 X10 Y200 F3200; home X axis and push Y forward\nG1 Z200 F1200; home Z axis\nM84 ; disable motors"
  42. },
  43. "machine_head_with_fans_polygon":
  44. {
  45. "default_value":
  46. [
  47. [ -65.0, -45.0 ],
  48. [ -65.0, 30.0 ],
  49. [ 50.0, 30.0 ],
  50. [ 50.0, -45.0 ]
  51. ]
  52. },
  53. "machine_max_feedrate_x": { "default_value": 300 },
  54. "machine_max_feedrate_y": { "default_value": 300 },
  55. "machine_max_feedrate_z": { "default_value": 40 },
  56. "machine_max_feedrate_e": {
  57. "default_value": 45
  58. },
  59. "machine_acceleration": { "default_value": 3000 },
  60. "gantry_height": { "value": "67" },
  61. "material_diameter": { "default_value": 1.75 },
  62. "material_print_temperature": {
  63. "minimum_value": "0"
  64. },
  65. "material_bed_temperature": {
  66. "minimum_value": "0",
  67. "maximum_value_warning": "125"
  68. },
  69. "material_bed_temperature_layer_0":
  70. {
  71. "maximum_value_warning": "125"
  72. },
  73. "material_standby_temperature": {
  74. "minimum_value": "0"
  75. },
  76. "speed_travel":
  77. {
  78. "maximum_value": "150",
  79. "value": "150"
  80. },
  81. "relative_extrusion":
  82. {
  83. "value": true,
  84. "enabled": true
  85. },
  86. "acceleration_enabled": { "value": "True" },
  87. "acceleration_layer_0": { "value": "acceleration_topbottom" },
  88. "acceleration_prime_tower": { "value": "math.ceil(acceleration_print * 2000 / 4000)" },
  89. "acceleration_print": { "value": "4000" },
  90. "line_width": { "value": "machine_nozzle_size * 0.875" },
  91. "machine_min_cool_heat_time_window": { "value": "15" },
  92. "default_material_print_temperature": { "value": "200" },
  93. "multiple_mesh_overlap": { "value": "0" },
  94. "acceleration_support_interface": { "value": "acceleration_topbottom" },
  95. "acceleration_topbottom": { "value": "math.ceil(acceleration_print * 500 / 4000)" },
  96. "acceleration_wall": { "value": "math.ceil(acceleration_print * 1000 / 4000)" },
  97. "acceleration_wall_0": { "value": "math.ceil(acceleration_wall * 500 / 1000)" },
  98. "brim_width": { "value": "3" },
  99. "cool_fan_full_at_height": { "value": "layer_height_0 + 4 * layer_height" },
  100. "cool_fan_speed": { "value": "70" },
  101. "cool_fan_speed_max": { "value": "100" },
  102. "cool_min_speed": { "value": "30" },
  103. "infill_line_width": { "value": "round(line_width * 0.5 / 0.35, 2)" },
  104. "infill_overlap": { "value": "0" },
  105. "infill_pattern": { "value": "'triangles'" },
  106. "infill_wipe_dist": { "value": "0" },
  107. "jerk_enabled": { "value": "True" },
  108. "jerk_layer_0": { "value": "jerk_topbottom" },
  109. "jerk_prime_tower": { "value": "math.ceil(jerk_print * 15 / 15)" },
  110. "jerk_print": { "value": "15" },
  111. "jerk_support": { "value": "math.ceil(jerk_print * 15 / 15)" },
  112. "jerk_support_interface": { "value": "jerk_topbottom" },
  113. "jerk_topbottom": { "value": "math.ceil(jerk_print * 5 / 15)" },
  114. "jerk_wall": { "value": "math.ceil(jerk_print * 10 / 15)" },
  115. "jerk_wall_0": { "value": "math.ceil(jerk_wall * 5 / 10)" },
  116. "layer_height_0": { "value": "0.2" },
  117. "raft_airgap": { "value": "0" },
  118. "raft_base_speed": { "value": "20" },
  119. "raft_base_thickness": { "value": "0.3" },
  120. "raft_interface_line_spacing": { "value": "0.5" },
  121. "raft_interface_line_width": { "value": "0.5" },
  122. "raft_interface_speed": { "value": "20" },
  123. "raft_interface_thickness": { "value": "0.2" },
  124. "raft_jerk": { "value": "jerk_layer_0" },
  125. "raft_margin": { "value": "10" },
  126. "raft_speed": { "value": "25" },
  127. "raft_surface_layers": { "value": "1" },
  128. "retraction_amount": { "value": "3" },
  129. "retraction_count_max": { "value": "10" },
  130. "retraction_extrusion_window": { "value": "1" },
  131. "retraction_hop": { "value": "2" },
  132. "retraction_hop_enabled": { "value": "True" },
  133. "retraction_hop_only_when_collides": { "value": "True" },
  134. "retraction_min_travel": { "value": "5" },
  135. "retraction_speed": { "value": "35" },
  136. "retraction_retract_speed": { "value": "35" },
  137. "retraction_prime_speed": { "value": "35" },
  138. "skin_overlap": { "value": "10" },
  139. "speed_equalize_flow_enabled": { "value": "True" },
  140. "speed_layer_0": { "value": "20" },
  141. "speed_prime_tower": { "value": "speed_topbottom" },
  142. "speed_print": { "value": "35" },
  143. "speed_support": { "value": "speed_wall_0" },
  144. "speed_support_interface": { "value": "speed_topbottom" },
  145. "speed_topbottom": { "value": "math.ceil(speed_print * 20 / 35)" },
  146. "speed_wall": { "value": "math.ceil(speed_print * 30 / 35)" },
  147. "speed_wall_0": { "value": "math.ceil(speed_wall * 20 / 30)" },
  148. "speed_wall_x": { "value": "speed_wall" },
  149. "support_angle": { "value": "45" },
  150. "support_pattern": { "value": "'triangles'" },
  151. "support_use_towers": { "value": "False" },
  152. "support_xy_distance": { "value": "wall_line_width_0 * 2.5" },
  153. "support_xy_distance_overhang": { "value": "wall_line_width_0" },
  154. "support_z_distance": { "value": "0" },
  155. "top_bottom_thickness": { "value": "1" },
  156. "travel_avoid_supports": { "value": "True" },
  157. "travel_avoid_distance": { "value": "machine_nozzle_tip_outer_diameter / 2 * 1.5" },
  158. "wall_0_inset": { "value": "0" },
  159. "wall_line_width_x": { "value": "round(line_width * 0.3 / 0.35, 2)" },
  160. "wall_thickness": { "value": "1" },
  161. "meshfix_maximum_resolution": { "value": "(speed_wall_0 + speed_wall_x) / 100" },
  162. "meshfix_maximum_deviation": { "value": "layer_height / 4" },
  163. "optimize_wall_printing_order": { "value": "True" },
  164. "retraction_combing": { "default_value": "all" },
  165. "initial_layer_line_width_factor": { "value": "120" },
  166. "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }
  167. }
  168. }