How to set up in WEIS an additional parameter in OutList

Hi,
something that should be simple but I cannot find a solution for.
Through WEIS, I want to have an additional output from ElastoDyn, and in the modeling yaml file I wrote this:

OpenFAST: # Options for WEIS fidelity level 3 = nonlinear time domain
    outlist:
        ElastoDyn:
            outlist: {TwHt1TDxt}

It does not give errors (as it happens if I use other syntax), but in the ElastoDyn.dat file generated there is not such parameter in OutList.

By the way: how / from where the default OutList is taken in WEIS?

You are close! Try this instead:

OpenFAST: # Options for WEIS fidelity level 3 = nonlinear time domain
    outlist:
        ElastoDyn:
            TwHt1TDxt: True

I will take a note to add this to the docs and an example

Thanks a lot, it works!