Hi,
New the forum, but have been using Mecway on and off for a few years now. Recently I have seen the need to creat sub-models based on data from a larger structure. Is this possible in Mecway, using the "transfer displacement" command, or in any other way? Any hints would be highly apprecitated.
Many thanks in advance.
Comments
You might have to run an older version of CCX, believe it or not I use 2.11 when I need submodels, because it stopped working around 2.14 or so - I have asked for a fix but no response.
Use CCX CUSTOM for this, directions are in comments :
In custom model definition:
*** SUBMODEL
*** coarse.liml and submodel.liml separate models, same geometric positions
*** run coarse.liml
*** build fine mesh submodel.liml and create node set cutb
*** also need *BOUNDARY cmd referencing cutb node set in custom step definition
*SUBMODEL,TYPE=NODE,INPUT= coarse.frd
cutb
in custom step contents:
*** Used with SUBMODEL command in custom model definition
*** command uses submodel mapped displacments 1-3 (x,y,z)
*** applied to current submodel
*BOUNDARY,SUBMODEL,STEP=1
cutb,1,3
I will try that out, even though I think it's way above my current skill level, as I'm mostly using Mecway "as it is".
I actually got some simple models to work, but as you mentioned, did only work with older ccx.exe (I used version 2.10)
trying sub-modeling on a more complicated model (using Mecway 13, ccx 2.16 pardiso which worked fine on simpler models) but keep getting this error message:
ERROR in readfrd: The input file "coarse.frd" could not be opened.
*ERROR in u_calloc: error allocating memory
variable=ielemnr, file=getglobalresults.c, line=198, num=-1, size=4
Anyone who have a clue? Seems like "coarse.frd" cannot be opened, the frd-file is approx 115MB, but I am not familiar with the ccx messages?
You might check out the CCX command *INCLUDE. It allows you to point to a file as input (that in your case would include the submodel commands). If you use this in custom CCX input in Mecway, it gives you the ability to have a variable input (coarse model name) to your model.
For example, you might have several coarse models, coarse_LC1.frd, coarse_LC2.frd... if your custom CCX uses the *include command, you could simply overwrite "input.dat" with updated pointer to different coarse models, and rerun mecway in batch.
This is a good trick to know in general, not just for submodels.