I'm trying to use Common Block to transfer data from Urdfil Subroutine to Dload/Utracload Subroutine. if someone has done about this, can share me some experience ???

I'm trying to use Common Block to transfer data from Urdfil Subroutine to Dload/Utracload Subroutine. if someone has done about this, can share me some experience ???
Hi,
I'vent tested, but you can try to take advantage of f90 syntax and use "module"… and compile by hand your subroutine. If you write a file like
It should be okay.Code:MODULE my_module IMPLICIT NONE REAL :: Var_to_share CONTAINS SUBROUTINE Urdfil(...) END SUBROUTINE Urdfil SUBROUTINE Utracload(...) END SUBROUTINE Utraload END MODULE my_module
Nice Day
Last edited by rogue-spectre; 2012-04-26 at 03:24. Reason: code indentation

of course !!!! , i've passed it for a few weeks , thank you so much,
You've ever worked with "Dynamic memory or allocated" can you tell me some experience ?
i am just a beginner in writing VUMAT and so far i have not used dynamic allocation for this problem in particular… but maybe i can help you if you tell me our problem with dynamic allocation.
Bookmarks