-
Notifications
You must be signed in to change notification settings - Fork 53
Description
I wanted to change the IECturbc value as I generated different turbsim files for DLC 1.2 case. I tried "turbulence_class" and "IECturbc" in my DLCs cases, and I tried with/without quotations, but nothing worked. I also went to my geometry (yaml file) and updated turbulence class, but it also did not change the outcome.
Current behavior
When I reviewed the generated turbsim .sum files for each case, I saw that IECturbc was equal to B. So I went to FASTLoadCases() Line 2076 and I hard coded this line:
dlc_generator.cases[i_case].IECturbc = 'C' # wt_class
Expected behavior
After hardcoding the above line, I was able to generate turbsim files and confirm in the .sum file that IECturbc = C now. So it seems like some input is not being read properly and there is a default value of IECturbc=B that seems to only make its way through the case generations.
Code versions
WEIS v1.6.0
Python 3.10.6

