(API) Analysis parameters - Combination Sign - Changing spectral case main mode

(API) Analysis parameters - Combination Sign - Changing spectral case main mode

TimoKet
Contributor Contributor
545 Views
2 Replies
Message 1 of 3

(API) Analysis parameters - Combination Sign - Changing spectral case main mode

TimoKet
Contributor
Contributor

Is it possible to change main mode number at combination sign table within analysis parameters via API? Could not find any examples of this.

 

TimoKet_0-1669876717746.png

 

0 Likes
Accepted solutions (1)
546 Views
2 Replies
Replies (2)
Message 2 of 3

Stephane.kapetanovic
Mentor
Mentor
Accepted solution

hi @TimoKet 

 

taking the example of your case X,

Stephanekapetanovic_1-1670046026296.png

below is an example that may help you

 

RobotSimpleCase RCase = RobApp.Project.Structure.Cases.CreateSimple(1024, "Spectral_X",  
   IRobotCaseNature.I_CN_SEISMIC, IRobotCaseAnalizeType.I_CAT_DYNAMIC_SEISMIC);
RCase.MainMode = 7;

 

Best regards

 

Stéphane Kapetanovic

Did you find this post helpful? If it gave you one or more solutions,
don't forget to accept the solution and leave a < like !
EESignature
Message 3 of 3

TimoKet
Contributor
Contributor

Thank you @Stephane.kapetanovic! Answer was way more straightforward than what I expected 🙂