I have ported CESM to Clemson University's supercomputer Palmetto following the porting instruction, and I am considering making full use of Palmetto to get better performance. Palmetto differs from other supercomputers that two different types of scratch systems are connected to each node. One is a general-purpose file system, presumably HDD, and the other is a parallel file system, SSD. The HDD folder is visible at all times, but the SSD folder is visible only during the lifetime of the job. This means, to use SSD instead of HDD, it is necessary to redirect the data output to the SSD folder after the job is submitted but before the model run starts, and also, after the model run finishes but before the job ends, move all the data out of the SSD folder. I am wondering how this function can be realized after the proper modifications of the submitting/running scripts. Is there a document clearly stating the workflow of the python "case" class when a job is being submitted?