I recently tried defining my new form in a new class using the getNextDialog function. But it still doesn't work. I'm out of ideas, does anybody know how I should do ? :/
Here's my getNextDialog just in case :
def getNextDialog(self, previousDb):
self.dialog2 = newSet(self)
return self.dialog2...
Hello,
I'm currently trying to implement an AFXDataDialog box in Abaqus. Once the data is selected, I want it to choose between Ok, Continue and Cancel. Ok is if you already have all your data, Continue sends you to another box to select more data and Cancel... cancels the operation.
Ok and...
Thanks but that's precisely my problem : the ref points are selected with the Iteration section of Abaqus, not in the GUI. Is there a way to access these information in the script ?
I know I wasn't clear enough in my post so I'll try to give a better explanation :
The plug-in uses Abaqus to...
Ok ! I think I understand. I'll try this as soon as possible.
One last question though: Can I just add the line refpoint_x = mdb.models['Model-1'].rootAssembly.referencePoints[4] right under the FXButton ? Will the program understand which refpoint I'm talking about ?
Hello,
I'm currently working on improving a plug-in for Abaqus. When using the plug-in, we need to select some reference points in the Interaction section of Abaqus. Then we chose to use them in the plug-in.
I then need to have access to the coordinates of the ref points but I can't find them...