Coupled RC Core Wall with MVLEM-3D
Re: Coupled RC Core Wall with MVLEM-3D
Thank you.
Please note that my first question is not regarding the number of iterations, but the number of analysis steps. Originally there was 8425 (if I remember correctly) and appears you reduced it to about 4000-something. Is this related to Adaptive Time Step?
Also, is there a way to record only strain and stress of coupling beams and now the mvlem walls? This will reduce the file size of results significantly.
Please let me know. Thanks.
Please note that my first question is not regarding the number of iterations, but the number of analysis steps. Originally there was 8425 (if I remember correctly) and appears you reduced it to about 4000-something. Is this related to Adaptive Time Step?
Also, is there a way to record only strain and stress of coupling beams and now the mvlem walls? This will reduce the file size of results significantly.
Please let me know. Thanks.
Re: Coupled RC Core Wall with MVLEM-3D
Oh sorry, no I just did it to speed up the test. It has nothing to do with the Adaptive time step, please reset it at its original value.Please note that my first question is not regarding the number of iterations, but the number of analysis steps. Originally there was 8425 (if I remember correctly) and appears you reduced it to about 4000-something. Is this related to Adaptive Time Step?
You can tell the MPCORecorder to record only a subset of your model:Also, is there a way to record only strain and stress of coupling beams and now the mvlem walls? This will reduce the file size of results significantly.
- Create a selection set with only the parts you want to record
- Create a Region analysis step with that selection set (type = element)
- Use the region in the MPCORecorder
Then, in post-processing, you can overlap multiple plots in the same plot group
Re: Coupled RC Core Wall with MVLEM-3D
Thank you . I setup two recorders with groups as you explained and it seems that all results are there.
I have two questions:
1) how do I access results marked with red in the screenshot?
2) I tried to run Python API script from viewtopic.php?f=46&t=2439 in STKO Script window, and it works fine. However, this is not exactly what I need. What I want to do is to be able to extract node/element data from Selection Sets that I already defined. Can you provide me with an example or some guidance on how to do that?
Please let me know. Thank you!
I have two questions:
1) how do I access results marked with red in the screenshot?
2) I tried to run Python API script from viewtopic.php?f=46&t=2439 in STKO Script window, and it works fine. However, this is not exactly what I need. What I want to do is to be able to extract node/element data from Selection Sets that I already defined. Can you provide me with an example or some guidance on how to do that?
Please let me know. Thank you!
- Attachments
-
- Capture.PNG (110.09 KiB) Viewed 3312 times
Re: Coupled RC Core Wall with MVLEM-3D
We are currently writing the documentation for the PyMpc Python API. In the meantime, we can help you here.2) I tried to run Python API script from viewtopic.php?f=46&t=2439 in STKO Script window, and it works fine. However, this is not exactly what I need. What I want to do is to be able to extract node/element data from Selection Sets that I already defined. Can you provide me with an example or some guidance on how to do that?
Try to use this one: It is similar to the one in the referenced post, but it allows extraction of either node or element-based results (also gauss or fiber-based).
Re: Coupled RC Core Wall with MVLEM-3D
Thank you for the example. It appears that example is extracting data from all nodes/elements. How can I modify it to extract data from specific Selection Sets? This is what I would like to do.
Please let me know. Thank you.
Please let me know. Thank you.
Re: Coupled RC Core Wall with MVLEM-3D
No, actually the example I sent you extracts the results you requested (all components) from all nodes or elements you selected.
For example, if you want to extract from a selection set, just select it, and then run the script:
For example, if you want to extract from a selection set, just select it, and then run the script:
Re: Coupled RC Core Wall with MVLEM-3D
I see. Thank you for clarifying. However, i have many selection sets that I need to process and o was hoping to make a loop and automate everything so i have to run the scriptonly once. Otherwise I'll have to select each one of the sets individually and that is not very efficient. I guess all I need is to figure out how to call a particular selection set using Python. Is that possible?
Please let me know. Thanks
Please let me know. Thanks
Re: Coupled RC Core Wall with MVLEM-3D
Tomorrow we will release a new version of STKO where you can access also the SelectionSets in the post document like this:
Code: Select all
App.clearTerminal()
doc = App.postDocument()
db = doc.getDatabase(1)
ssets = db.selectionSets
for sset_id, sset in ssets.items():
print('\nSelection Set {}'.format(sset_id))
print(sset.id)
print(sset.name)
print(sset.nodes)
print(sset.elements)
Re: Coupled RC Core Wall with MVLEM-3D
That would be great! Thank you!
Re: Coupled RC Core Wall with MVLEM-3D
Hello, can you please let me know if you have implemented the SelectionSets in the API? I have started STKO, but it doesnt appear there is new version released yet.
Please let me know. Thank you.
Please let me know. Thank you.