Hi,
Since it is clear, that the variable RenumberMethod does not exist in V. 7.2, I've a huge problem regarding reading NASTRAN files: I need the capability to import NASTRAN without renumbering elements.
The current beta version does not import NASTRAN without errors and additionally the properties are not arranged to layers automatically. All this works fine in version 7.2, but there's the issue with the renumbering.
When will the bugs in beta version fixed regarding NASTRAN import?
Best regards,
Ruediger
[GiDlist] beta version 7.4
Moderator: GiD Team
[GiDlist] beta version 7.4
I unknow this related bug importing NASTRAN with the last beta versions.
In fact, the last GiD & Nastran2 problemtype have several enhanced new
features (can import not only Nastran mesh, also conditions, materials, etc
if the problemtype nastran2 is loaded when import the Nastran file)
What's your Nastran import problem?
Can you send some small sample with the related bug (send us directly to
escolano at cimne.upc.es) to fix it for the next beta.
Enrique
----- Original Message -----
From: "My VDI Freemail" heim.ruediger at vdi.de
To: gidlist at gatxan.cimne.upc.es
Sent: Monday, December 01, 2003 5:55 PM
Subject: [GiDlist] beta version 7.4
Hi,
Since it is clear, that the variable RenumberMethod does not exist in V.
7.2, I've a huge problem regarding reading NASTRAN files: I need the
capability to import NASTRAN without renumbering elements.
The current beta version does not import NASTRAN without errors and
additionally the properties are not arranged to layers automatically. All
this works fine in version 7.2, but there's the issue with the renumbering.
When will the bugs in beta version fixed regarding NASTRAN import?
Best regards,
Ruediger
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist
In fact, the last GiD & Nastran2 problemtype have several enhanced new
features (can import not only Nastran mesh, also conditions, materials, etc
if the problemtype nastran2 is loaded when import the Nastran file)
What's your Nastran import problem?
Can you send some small sample with the related bug (send us directly to
escolano at cimne.upc.es) to fix it for the next beta.
Enrique
----- Original Message -----
From: "My VDI Freemail" heim.ruediger at vdi.de
To: gidlist at gatxan.cimne.upc.es
Sent: Monday, December 01, 2003 5:55 PM
Subject: [GiDlist] beta version 7.4
Hi,
Since it is clear, that the variable RenumberMethod does not exist in V.
7.2, I've a huge problem regarding reading NASTRAN files: I need the
capability to import NASTRAN without renumbering elements.
The current beta version does not import NASTRAN without errors and
additionally the properties are not arranged to layers automatically. All
this works fine in version 7.2, but there's the issue with the renumbering.
When will the bugs in beta version fixed regarding NASTRAN import?
Best regards,
Ruediger
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist
[GiDlist] calculate
Dear GID Team,
I am trying to form my own calculate menu and here I need to call the
MyCalculate action which
is nothing but a modified form of the original calculate action. like below
CreateMenu "MyCalculate" "PRE"
InsertMenuOption "MyCalculate" "MyCalculate" "0" {MyCalculate GIDDEFAULT
} "PRE"
the question is ;
what does the GIDDEFAULT stand for in the Running.tcl under the scripts
directory.
and what can be the reason for getting an error message like 'can't read
wRunWin : novariable'
Thanks ahead
I am trying to form my own calculate menu and here I need to call the
MyCalculate action which
is nothing but a modified form of the original calculate action. like below
CreateMenu "MyCalculate" "PRE"
InsertMenuOption "MyCalculate" "MyCalculate" "0" {MyCalculate GIDDEFAULT
} "PRE"
the question is ;
what does the GIDDEFAULT stand for in the Running.tcl under the scripts
directory.
and what can be the reason for getting an error message like 'can't read
wRunWin : novariable'
Thanks ahead
[GiDlist] calculate
Whe you press your own menu "MyCalculate", the it's called your procedure
MyCalculate with a parameter with constant value == "GIDDEFAULT" !!!
In other hand, GIDDEFAULT is a global variable, automatically set to the
path to gid.exe.
You can use this variable to have a relative access to your own
"Myfile.exe", for example
InsertMenuOption "MyCalculate" "MyCalculate" "0" { MyCalculate } "PRE"
proc MyCalculate { } {
global GIDDEFAULT
set myexefile [file join $GIDDEFAULT problemtypes Myfile.exe]
exec $myexefile
}
I unknown the cause of the error message about "wRunWin", but if you add
your own "My Calculate" menu,
must remove the standard "Calculate" menu.
Enrique Escolano
----- Original Message -----
From: "Ilker Basol" ibas at tet.uni-hannover.de
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, December 04, 2003 3:15 PM
Subject: [GiDlist] calculate
Dear GID Team,
I am trying to form my own calculate menu and here I need to call the
MyCalculate action which
is nothing but a modified form of the original calculate action. like
below
CreateMenu "MyCalculate" "PRE"
InsertMenuOption "MyCalculate" "MyCalculate" "0" {MyCalculate GIDDEFAULT
} "PRE"
the question is ;
what does the GIDDEFAULT stand for in the Running.tcl under the scripts
directory.
and what can be the reason for getting an error message like 'can't read
wRunWin : novariable'
Thanks ahead
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist
MyCalculate with a parameter with constant value == "GIDDEFAULT" !!!
In other hand, GIDDEFAULT is a global variable, automatically set to the
path to gid.exe.
You can use this variable to have a relative access to your own
"Myfile.exe", for example
InsertMenuOption "MyCalculate" "MyCalculate" "0" { MyCalculate } "PRE"
proc MyCalculate { } {
global GIDDEFAULT
set myexefile [file join $GIDDEFAULT problemtypes Myfile.exe]
exec $myexefile
}
I unknown the cause of the error message about "wRunWin", but if you add
your own "My Calculate" menu,
must remove the standard "Calculate" menu.
Enrique Escolano
----- Original Message -----
From: "Ilker Basol" ibas at tet.uni-hannover.de
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, December 04, 2003 3:15 PM
Subject: [GiDlist] calculate
Dear GID Team,
I am trying to form my own calculate menu and here I need to call the
MyCalculate action which
is nothing but a modified form of the original calculate action. like
below
CreateMenu "MyCalculate" "PRE"
InsertMenuOption "MyCalculate" "MyCalculate" "0" {MyCalculate GIDDEFAULT
} "PRE"
the question is ;
what does the GIDDEFAULT stand for in the Running.tcl under the scripts
directory.
and what can be the reason for getting an error message like 'can't read
wRunWin : novariable'
Thanks ahead
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist