Would you add GammaM0, GammaM1 and GammaM3 into class ConnectionSetup? #234
|
Hi, Best regards |
Answered by
nathanlukeIDEA
Jan 27, 2023
Replies: 3 comments
|
Hi Witek, Just to be sure on my end, you are trying to set these parameters in IOM so they are set correctly when you create a .ideaCon from IOM? Cheers |
0 replies
|
Hi Witek, This is actually already possible. SteelSetup is an abstract class you can use to set these values. Create a new SteelSetupECEN() class and assign it to the SteelSetup property. There is an example below: public static void SetECENSetupValues(ConnectionSetup setup)
{
setup.SteelSetup = new SteelSetupECEN()
{
GammaM0 = 0,
GammaM1 = 1,
GammaM2 = 2,
GammaMfi = 3,
GammaMu = 4
};
}Please let me know if you have problems with this. Thanks |
0 replies
Answer selected by
nathanlukeIDEA
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Hi Witek,
This is actually already possible. SteelSetup is an abstract class you can use to set these values. Create a new SteelSetupECEN() class and assign it to the SteelSetup property. There is an example below:
Please let me know if you have problems with this.
Thanks
Nathan