Adds a mesh constraint (override region) to a 'FEEM' simulation.. A FEEM solver region must be present in the objects tree for this command to work.
Syntax |
Description |
---|---|
addfeemmesh; |
Adds a mesh constraint to the 'FEEM' simulation environment. This function does not return any data. |
Example 1
The following script commands will add a mesh constraint to the FEEM solver already present in the objects tree and print the name of all of its properties.
addfeemmesh; ?set;
Example 2
The following script commands will add a mesh constraint to the FEEM solver region in Finite Element IDE, name it, assign it to a specific surface between two domains, and set the maximum edge length for any element on the surface.
addfeemsolver; addfeemmesh; set("name","mesh_surface"); set("geometry type","surface"); set("surface type","domain:domain"); set("domain 1",2); set("domain 2",3); set("max edge length",0.05e-6);
See Also