Download Matlab files and Abaqus input file: drive.google.c... To read output from Abaqus using Matlab watch: • Read Abaqus results fr... Multivariable optimization in Matlab: • How to use optimizatio...
Пікірлер: 41
@hamedafrasiab5760Ай бұрын
Really great videos for Abaqus and Matlab. Second to none. Thank you so much.
@looloolalaable3 жыл бұрын
Your videos on MATLAB and Abaqus are truly great. Keep them coming.
@n2l84med33 ай бұрын
fabulous. really useful and helpful. Thank you so much.
@hamidrezapaaria93633 жыл бұрын
Really helpful information, Many Thanks
@AAAQ943 жыл бұрын
Great efforts. Keep the good job :)
@militarysimulationlab2 жыл бұрын
Thanks a lot! I'm using your codes to edit Abaqus python codes rather than .inp files. Anyway, your videos are very helpful.
@dusuper28123 жыл бұрын
Very nice video. I Have the following two questions : 1. How can we set the objective function to minimize when we have several experimental curves to fit? 2. If the parameters are in the location of the user subroutine (like UMAT), where can we change in the Matlab code to do optimization? Thank you for this video and your kind and answers!
@10Minuters3 жыл бұрын
Hi, you can select several key points from curves, for example if you have 3 curves, select 10 to 50 points from each curve that can define the curve shape. Then take the absolute value (or squared) of the difference between experimental and simulation prediction. Add the 'error' together. This 'error' is a function of your simulation parameters to be optimized. Check this playlist on optimization, you might get some more questions answered: kzbin.info/aero/PLadIcAbP3-ygAhzIfJaJ4Eh6xHZdC0czE You might not have simulation and experimental values at save s coordinates, this video can help: kzbin.info/www/bejne/pXLLfX-Hr5t_qaM To answer your 2nd question: Check this RG discussion: www.researchgate.net/post/How_can_I_call_an_Abaqus_input_file_from_Matlab_that_uses_a_subroutine_UEL Rest of the steps for optimization framework is as in this video.
@dusuper28123 жыл бұрын
@@10Minuters Thanks very much for your detailed answers !!!
@sejong46723 жыл бұрын
Thank you so much for your effort!!
@jiazhenghu60552 жыл бұрын
Thanks for uploading this fantastic video. QUICK QUESTION, it looks like "inp_initial.m" tends to recreate another .inp file for next iteration. Then, how did you create "inp_initial.m" at the first place?
@10Minuters2 жыл бұрын
Hi, the code can be separately written for inp_initial.m. However, if you check the code contains the actual initial input file text with some modification. I can share a simple m file if you want that does most of these modifications when run.
@jiazhenghu60552 жыл бұрын
@@10Minuters thanks for the follow-up! I also figured out how you accomplished that, much appreciation.
@rudrachauhan16053 жыл бұрын
Extremely Helpful Video. A small doubt though. Is it possible to conduct size or shape optimization using the same codes?
@10Minuters3 жыл бұрын
It would be difficult, better use abaqus built-in optimization for this purpose.
@anahitaahmadisoufivand50533 жыл бұрын
Great! Thank you!
@CineScope3602 жыл бұрын
The video is very helpful, sir can we do an inverse problem to find q flux with experimental temperature using this procedure.where i need to find optimum q
@zufainhussan90023 жыл бұрын
As you have only one objective function F_obj= 600. Is it possible to set two objective functions?
@10Minuters3 жыл бұрын
One should first try to make multiple objectives into a single objective. As we usually try to minimize the objective, if we have several Obj, we can simply add them (if necessary with some weight factor) to make a single objective. Simplest of the examples is here: kzbin.info/www/bejne/mJ_dkGiFidSIqdk. If you still have multiple objectives, check 'paretosearch' function or genetic algorithm base function 'gamultiobj'
@mahantaghavi37753 жыл бұрын
خدا خیرتون بده با این ویدیو های با کیفیت😁👍👍
@azedinerebouh3651 Жыл бұрын
Hello sir i have question in my simulation I want just to change young's modulus and see the graphics and compare can I just use inp_initial.m ??
@GigaChad-hf4yo3 жыл бұрын
good work but can u use this script to get the Johnson-cook parameters and where can i find such script
@hakanberkcanpolat4408 Жыл бұрын
The only thing I don't understand is how the code works for displacement=30 mm even if there isn't a line about it
@lodo9787 Жыл бұрын
Is possibile to Modify the Global Stiffness Matrix from MATLAB? Thanks
@nuraqila2769 Жыл бұрын
I got this error when run the optimize.m code: Function definitions are not permitted in this context. What should I do?
@lodo9787 Жыл бұрын
Is possible to create or modify a response (topology optimization) with a script?
@zufainhussan90023 жыл бұрын
I am working on the optimization of the structure. I made a python script with which I can change parameters, but now I want to optimize it. Can you give me an idea, how can I do optimization with python instead of “Matlab” if possible? Thanks
@10Minuters3 жыл бұрын
I never tried python for optimization. Now when I googled, I could find help is available on the topic. I hope you will find something for your use-case.
@zufainhussan90023 жыл бұрын
@@10Minuters Thanks
@Abo_omar_al_ghamdi Жыл бұрын
Convert your python code to Matlab by using Chatgpt Then follow the video بالتوفيق
@amolauliyan73183 жыл бұрын
Can you run 2 odb file and then compare their max. and min. value until they become same for both of them in MATLAB
@10Minuters3 жыл бұрын
Yes, it should be possible.
@amolauliyan73183 жыл бұрын
@@10Minuters can you tell me how?
@10Minuters3 жыл бұрын
@@amolauliyan7318 Similar to how now 1 job is run, you will run instead 2 jobs one after another. Use the read output script twice. Now you have two values to compare for Max and Min. You have to choose one or more variables (similar to E in the video) that you want optimize. Then an objective/ error function consisting err=max-min is minimized for changing variable/variable of your choice.
@taarigo61193 жыл бұрын
Thanks, that is a great video. Please can I replace abaqus '.inp' file by abaqus '.py' python file? or how to transform a '.py' file to '.inp' and use your methodology?
@jelenanikolic239010 ай бұрын
Hello, I am also interested in this method. Have you had any success?
@taarigo611910 ай бұрын
@@jelenanikolic2390 Yes, just call your python file in your Matlab optimization script instead of inp file like his video and it worked
@sujalsapkota68754 ай бұрын
@@jelenanikolic2390 Hello. I am also interested in the same. Since this is my first time working with optimization, can you provide me with some resources that might be helpful for the optimization of structure using Abaqus, Python, and MATLAB?
@SarahBennMa3 жыл бұрын
how can i contact you Sir
@10Minuters3 жыл бұрын
Hi, You can contact me here: 10minuterschannel@gmail.com