Hi Larson HT,
I dont know if this will help you, but its what a figure out to measure a element length.
Sub Main
Dim App As femap.model
Set App = feFemap()
'--Create a solid
App.feSolidPrimitive(0,1,True, Array(0,0,0), Array(20, 5, 5), TEST_1)
'--Create a material
[...
Hi,
I made this code, try to use...
Sub Main
Dim App As femap.model
Set App = feFemap()
'---Create a Load Set
Dim Load_Set As femap.LoadSet
Set Load_Set = App.feLoadSet
Load_Set.title = "Load Set - Test 1"
Load_Set.ID = 1
Load_Set.Put(Load_Set.ID)
'---Create a load that will be applied at...
Hi,
I would like to know, if there are a way to use the custom tools by API.
The only kind of code that I found was:
App.Pref_CustomToolsPath = "C:\FEMAPv1111....."
App.Pref_StartupProg = "C:\FEMAPv1111\....."
App.Pref_RunProgNewModels = True
But they just choose the path or the code to be...