Everyone probably knows this one already, but clicking on a command in a data file and hitting Ctrl-space to see the keywords is super-handy. Or hitting F1 to see the help.
Did you know you can add custom colors to your model plots? Just select a color from the Color-List for a Plot-Item to bring up the color settings dialog. Then right-click one of the empty color boxes and enter the color’s Hex # or RGB code. You can also save this to your custom color list (before clicking OK) for future use.
You can dump a list to a file with a single line. For example, if you have a list of strings called lines, you can just do this:
[file.all(‘test.txt’,‘text’) = lines]
Even better, you can use splitting to easily dump out data. For example, if you want to dump all gridpoint pore pressures to a file, you can do this:
[file.all(‘test.txt’,‘text’) = gp.pp(::gp.list)]