Really helpful video, one of the best introduction videos i have seen on scripting. Thank you :)
@mariakopp927 жыл бұрын
This was really helpful. Exactly what I needed, explained in a very understandable way. Thank you very much!
@mbarkey.mechanics7 жыл бұрын
Thank you Maria, happy scripting!
@yedwakhuboni8 жыл бұрын
Great vid, I certainly learnt a lot from this video.
@mbarkey.mechanics8 жыл бұрын
Thanks!
@ajdiend6 жыл бұрын
A big thank you for sharing your Knowledge!
@mbarkey.mechanics6 жыл бұрын
You are welcome. Happy scripting. :cheers:
@DreamX246 жыл бұрын
Big Thanks for sharing this, I was struggling with this.
@mbarkey.mechanics6 жыл бұрын
You are welcome, happy computing!
@noorulhadi75482 жыл бұрын
Good way. I have trouble to get predefined field variable (FV1). please guid how can I get FV1 for a specific node I want to plot U against FV1 for a specific node
@justine62474 жыл бұрын
Thanks for this hints
@mahdiasadpour90863 жыл бұрын
thanks for the helpful video, would you explain how it is possible to access the data regarding s11 or s22( I mean reading those, for all the elements at once like the process you have used for reading the NT11 and adding to another step.)
@mbarkey.mechanics3 жыл бұрын
It is done in a similar way, but what you get are the stress tensor components at integration points, based element number. You will need to do the appropriate work to get the values transferred to nodal locations. Temperature is already a nodal quantity, and in my opinion, is much easier that dealing with stresses. Please refer to the ABAQUS documentation, as I have not written any script for stresses.
@mahdiasadpour90863 жыл бұрын
@@mbarkey.mechanics Thanks, I appreciate your response.
@raghavendrab43704 жыл бұрын
hello i have a doubt, if i want to extract temperature of a particular node by using node label how do i change this script line to get that information of just one particular node
@mbarkey.mechanics4 жыл бұрын
I'm sure there are a few ways to do this--if you look at the green comment lines at 23:12, maybe try print t.values[50] for node 50. I learned enough python to get what I needed, but I am not an expert on it.