Simplify 3d skips cool off period at end of print.

Has anyone experienced this?

At the end of the print using Simplify 3D the print bed moves back and then immediately all the way forward. The bed temp is still at 80 degrees.

I am using the TAZ 6.

Does your ending gcode in the S3D scripts tab look something like this?

M400                           ; wait for moves to finish
M104 S0                        ; hotend off
M107                           ; fans off
G91                            ; relative positioning
G1 E-1 F300                    ; retract the filament a bit before lifting the nozzle to release some of the pressure
G1 Z+20 E-5 X-20 Y-20 F3000    ; move Z up a bit and retract filament even more
M117 Cooling please wait       ; progress indicator message
G90                            ; absolute positioning
G1 Y0 F3000                    ; move to cooling position
M190 S50                       ; set bed to cool off
G1 Y280 F3000                  ; present finished print
M84                            ; steppers off
G90                            ; absolute positioning
M117 Print complete            ; progress indicator message

I was just looking at this

it says ending script:

M400 ; wait for moves to finish
M104 S0 ; turn off extruder
M107 ; turn off fan
G1 Y0 F3000 ; move to cooling position
M117 Cooling please wait
M190 S50 ; cool down bed
G1 Y280 F3000 ; present finished print
M140 S0 ; turn off bed
M84 ; disable motors
M117 Print complete

Would it hurt anything to change it to what is in Cura?

Tried putting the same end g code from cura into siplify 3d and the print bed heater doesn’t turn off at all.

Anyone have any ides?

Here is the end gcode I put in:

M400 ; wait for moves to finish
M140 S{material_part_removal_temperature} ; start bed cooling
M104 S0 ; disable hotend
M107 ; disable fans
G91 ; relative positioning
G1 E-1 F300 ; filament retraction to release pressure
G1 Z20 E-5 X-20 Y-20 F3000 ; lift up and retract even more filament
G1 E6 ; re-prime extruder
M117 Cooling please wait ; progress indicator message on LCD
G90 ; absolute positioning
G1 Y0 F3000 ; move to cooling position
M190 R{material_part_removal_temperature} ; wait for bed to cool down to removal temp
G1 Y280 F3000 ; present finished print
M140 S{material_keep_part_removal_temperature_t}; keep temperature or cool downs
M84 ; disable steppers
G90 ; absolute positioning

Cura uses customized variables to update start/end temperatures:

S3D Likely does not recognize {material_part_removal_temperature} which we have customized per material. In order to get these to function, replace the variable with whatever temperature you would like it to be.

M140 S{material_part_removal_temperature} ; start bed cooling -> M140 S50 ; This will set the temperature to 50 degrees before moving the bed forward.

You will want to update all of the items in brackets with a number, and it should get you up and running.