How to quench in EMC

Hello EMC,
I want to perform a quenching process to polymer structure.
For example, if I want to build a quenching process like below,
10,000K with 20,000 Monte Carlo Cycles followed by 5,000K with 20,000 Monte Carlo Cycles.

I read the emc.pdf file but I can’t find which command to use.
Any advice or suggestions are greatly appreciated.

Thanks.

I solved the problem.

Dear user,

Good to hear, that you were able to find a solution by yourself. I was going to ask if you are directly adapting the .emc EMC input script or if you are using the .esh EMC Setup script as a precursor. In .emc a temperature of 10,000 K for system id 0 is set with

simulation = {
  systems -> {
    properties -> {
      id -> 0, temperature -> 10000
    }
  }
};

EMC Setup input decks allow you to directly add verbatim EMC script by using ITEM EMC. This can be used to add Monte Carlo moves, system settings etc. after a system was built. The above systems setting would start with ITEM EMC and closed with ITEM END.