Hi Tim,
Unfortunately, I am affected by a bug from the 2004 Windows update and since numpy is broken, so is TELEMAC apparently. So I cannot test your project (or any other telemac computation) until this is resolved.
Fortunately, your scan indicates the problem.
Your lqd file contains:
Variables :
- ELEVATION Z M
- VELOCITY U M/S
- VELOCITY V M/S
- SALINITY
- TEMPERATURE
Which are the default variable to extract for TELEMAC3D boundary file and used to be hardcoded in the script. This has been changed in newer versions and you can specify the variables to extract. In your case that should be:
varnames = ['WAVE HEIGHT HM0', 'MEAN DIRECTION'],
varunits = ['M', 'DEG']
If you can't, that means you have too old scripts and you need to update your installation or hardcode them in the scipt.
Costas