Contact CIMNE
Edificio C-1, Campus Norte UPC C/ Gran Capitán s/n. 08034 Barcelona - Spain
|
|   |
Support
Mailing list
GiDList year 2006
| GidList 2006 |
|
Mailing list Archive year 2006
[GiDlist] Save the Problem Type
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060105/591ee231/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060105/591ee231/attachment.htm [GiDlist] Save the Problem Type
Send by: Enrique Escolano GiD can only save the standard associated data: materials, conditions, general data.
If your problemtype has its own data (in tcl variables) then must be saved/read to disk using its own file.
I order to do this, when the user save/read a model, GiD provides a call to a Tcl procedure that the problemtype can
implement to save this additional information.
The event procedures are:(read GiD help about Tcl-Tk extension - event procedures)
proc SaveGIDProject { filespd } {
set fp [open $filespd w]
if { $fp != "" } {
#read the file contents ...
close $fp
}
}
a.. SaveGIDProject: will be called when the current opened file is saved to disk. It receives the filespd argument, which is the path of the file which is being saved, but with a .spd extension (specific problemtype data). This path can be useful if you want to write specific information of the problem type in a new file.
proc AfterOpenFile { filename format error } {
...body...
}
a.. AfterOpenFile: will be called after a geometry or mesh file is read or imported inside GiD. It receives as arguments:
a.. filename: the full name of the readed file.
b.. format: ACIS_FORMAT, DXF_FORMAT, GID_BATCH_FORMAT, GID_GEOMETRY_FORMAT, GID_MESH_FORMAT , IGES_FORMAT, NASTRAN_FORMAT,PARASOLID_FORMAT,SHAPEFILE_FORMAT,STL_FORMAT or VDA_FORMAT
c.. error: boolean 0 or 1 to indicate an error when reading.
proc SaveGIDProject { filespd } {
set fp [open $filespd w]
if { $fp != "" } {
#save the specific problemtype data file contents ...
close $fp
}
}
proc AfterOpenFile { filename format error } {
WarnWinText "$filename $format $error"
if { $format == "GID_GEOMETRY_FORMAT" } {
#open and read the additional file contents.
#the name of the file to open can be obtained from filename, e.g.
set filespd [file join $filename [file tail $filename].spd]
if { [file exists $filespd } {
set fp [open $filespd r]
#read the specific problemtype data file contents ...
close $fp
}
}
}
Instead AfterOpenFile, it's also possible to use the procedure LoadGIDProject , but note that this event is called when reading a model, but also when reading a problemtype (because it is like a special model). It's more recommended to use AfterOpenFile.
proc LoadGIDProject { filespd } {
...body...
}
----- Original Message -----
From: ...
[GiDlist] Save the Problem Type
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060110/b69a5557/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060110/b69a5557/attachment.htm [GiDlist] Save the Problem Type
Send by: Enrique Escolano This is because the Nastran problemtype only need to save with the model the "standard data" (conditions, materials, etc), and this is responsability of GiD to save the applied values. For example, a GiD condition is a list of QUESTION - VALUE fields. The question is stored in the condition definition itself *.cnd, and the different values applied to entities of the model are stored by GiD in a binary file named *.lin. But probably you are using other additional values stored in your own tcl variables (instead to fill a VALUE field), then is your responsability to save and restore this data when GiD save an read the model. Enrique ----- Original Message ----- From: ... [GiDlist] Dimensions of the windows menu's
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060111/a2eef1fb/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060111/a2eef1fb/attachment.htm [GiDlist] Save the Problem Type
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060118/8b9112f7/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060118/8b9112f7/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: faceload.tcl Type: application/octet-stream Size: 28932 bytes Desc: not available Url : ... {SPAM?} Re: [GiDlist] Save the Problem Type
Send by: Enrique Escolano GiD saves all the condition VALUE values applied to entities. In your condition this fields are "Face ID", Pressure, Face (for example, Face ID=1 Pressure=25 Face=Face_Load for the line 56, etc) Warning: you must not use space characters for a question, condition or book name, instead "Face ID", must use Face_ID !!! But you additionally use tkwidget to add more Tk features to the standard conditions windows. You used some tablelist, etc. This widgets are under your control, GiD don't know nothing about its contents, and is your responsability to save to/read from disk this values in your own files (when GiD raise the event of save/read the model) Enrique ----- Original Message ----- From: ... [GiDlist] Delete assigned nodes
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060111/64e09d0f/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060111/64e09d0f/attachment.htm [GiDlist] Delete assigned nodes
Send by: Enrique Escolano You can specify this selection from the tcl code (without user interaction), with the list of entities separated by spaces, or ranges with a semicolon like 1:4 instead 1 2 3 4, and finished with escape for example: GiD_Process escape escape escape escape data cond assign [DWGetGIDCondName $GDN] unassign 1 5:end escape About to remember the window sizes, instead to create a window with the Tk standard toplevel command, can use the InitWindow GiD tcl procedure. Then GiD save and restore the window size. Yourself can off course to save and read this window sizes, and set again this size when reopen it (see wm geometry Tk standard command) For a sample using InitWindow, download and read the A3-Extension_tcl_ENG.doc document, from the GiD course 2002, Advanced course documentation ( ... [GiDlist] How to extrude the doubly curved shell
Send by: Willy S
Hi GiD Team
How to create and extrude the doubly curved shell?? Would you please to advice?
Thanks
---------------------------------
Yahoo! Photos
Got holiday prints? See all the ways to get quality prints in your hands ASAP.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060112/a682de24/attachment.htm
[GiDlist] How to extrude the doubly curved shell
Send by: Enrique Escolano Maybe you can create this surface by extruding a curve with revolution around an axe (from the copy windows with rotation transformation and extruding surfaces), or maybe can use as transformation a sweep of a curve along another path curve. You can also create only the boundary curves and then create a surface by contour. ----- Original Message ----- From: Willy S To: gidlist at gatxan.cimne.upc.edu Sent: Thursday, January 12, 2006 2:39 AM Subject: [GiDlist] How to extrude the doubly curved shell Hi GiD Team How to create and extrude the doubly curved shell?? Would you please to advice? Thanks ------------------------------------------------------------------------------ Yahoo! Photos Got holiday prints? See all the ways to get quality prints in your hands ASAP. -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] coordinates of objects
Send by: Nguyen, Binh Dear All; Wondering if there is a way to automatically update the z-coordinate of an object when moving the pointer. Currently, the x and y coordinates are but the z one is always zero. Regards Binh -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060117/65cddf66/attachment.htm [GiDlist] coordinates of objects
Send by: Enrique Escolano SEC: U coordinates of objectsThis coordinate is the location where the new point will be located, and currently the work plane must be only the XY (Z=0). It's not a coordinate over an object. To pick over an entity can use (when selecting coordinates) point in line, point in surface, or Join to pick and existent point. Enrique ----- Original Message ----- From: Nguyen, Binh To: gidlist at gatxan.cimne.upc.es Sent: Tuesday, January 17, 2006 1:50 AM Subject: [GiDlist] coordinates of objects Dear All; Wondering if there is a way to automatically update the z-coordinate of an object when moving the pointer. Currently, the x and y coordinates are but the z one is always zero. Regards Binh -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Becames an empty array
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060117/d15c4f41/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060117/d15c4f41/attachment.htm [GiDlist] Becames an empty array
Send by: Enrique Escolano You must declare this variable array 'ProblemTypePriv' as global for this procedure global ProblemTypePriv ----- Original Message ----- From: ascosta at portugalmail.pt To: gidlist at gid.cimne.upc.es Sent: Tuesday, January 17, 2006 3:27 PM Subject: [GiDlist] Becames an empty array Hi GID team! I have this procedure. proc FunctionAdd2 { wtext parent} { global inum set resauxp [.central.s info conditions PointLoad mesh] if {$resauxp != ""} { set ProbemTypePriv(pointassign) "" #lappend ProbemTypePriv(pointassign) "" foreach i $resauxp { set point [lindex $i 15] $wtext insert end $point if {$inum!= 1} { if {[lsearch $ProblemTypePriv(pointassign) $point] == -1} { lappend ProblemTypePriv(pointassign) $point } incr inum } else { lappend ProblemTypePriv(pointassign) $point incr inum } } } But i have one problem, everytime this procedure is called, set ProbemTypePriv(pointassign) "" doesn't works. This variable don't became empty. Can you help me to solve this? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Becames an empty array
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060117/2be2a816/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060117/2be2a816/attachment.htm [GiDlist] Becames an empty array
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060117/d2a0580f/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060117/d2a0580f/attachment.htm [GiDlist] Dimensions of the windows menu's
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060118/59645efb/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060118/59645efb/attachment.htm [GiDlist] Dimensions of the windows menu's
Send by: Ramon Ribó Hello,
Maybe this should work:
$window configure -width 790 -height 400
grid propagate $window 0
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com ramsan at compassis.com
c/ Tuset, 8 7-2 tel. +34 93 218 19 89
08006 Barcelona, Spain fax. +34 93 396 97 46
En Wed, 18 Jan 2006 12:33:20 +0100, <ascosta at portugalmail.pt> escribió:
> When i have something like this
...
[GiDlist] Dimensions of the windows menu's
Send by: ascosta at portugalmail.pt Hi!
I've tried but still don't works. Because is the principal frame inside de window that are fixed.
And i want define the dimensions of the window.
Where i can define the dimentions of the window Face Load?
Regards.
Hello,
Maybe this should work:
$window configure -width 790 -height 400
grid propagate $window 0
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com ramsan at compassis.com
c/ Tuset, 8 7-2 tel. +34 93 218 19 89
08006 Barcelona, Spain fax. +34 93 396 97 46
En Wed, 18 Jan 2006 12:33:20 +0100, <...
[GiDlist] Dimensions of the windows menu's
Send by: Miguel Pasenau set w $window
for { set w [ winfo parent $w]} { [winfo class $w] != Toplevel} { set w [
winfo parent $w]} {
}
$w configure width 790 height 400
http://www.gidhome.com/ManHtml/tcl8.4.9/html/contents.htm
_____
De: gidlist-admin at gatxan.cimne.upc.edu
[mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de
ascosta at portugalmail.pt...
[GiDlist] Dimensions of the windows menu's
Send by: ascosta at portugalmail.pt Sorry, but still don't works.
Results an error:
Error in tcl script sending event INIT to ::tkpoint::ReadyValue: syntax error in expression " [winfo class $w] != Toplevel": variable references require preceding $
I introduce $ before Toplevel, but :
can't read "Toplevel": no such variable.
The problem is that i don't know what is the toplevel name of my "Point Load" Window.
Because when i do
set w $window
$window isn't the window "Point Load", but $PARENT.
Thanks.
set w $window
for { set w [ winfo parent $w]} { [winfo class $w] != Toplevel} { set w [ winfo parent $w]} {
}
$w configure width 790 height 400
...
[GiDlist] Dimensions of the windows menu's
Send by: Miguel Pasenau Change Toplevel to Toplevel ( note the quotes) _____ De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de ascosta at portugalmail.pt Enviado el: jueves, 19 de enero de 2006 11:24 Para: gidlist at gid.cimne.upc.es Asunto: RE: [GiDlist] Dimensions of the windows menu's Sorry, but still don't works. Results an error: Error in tcl script sending event INIT to ::tkpoint::ReadyValue: syntax error in expression " [winfo class $w] != Toplevel": variable references require preceding $ I introduce $ before Toplevel, but : can't read "Toplevel": no such variable. The problem is that i don't know what is the toplevel name of my "Point Load" Window. Because when i do set w $window $window isn't the window "Point Load", but $PARENT. Thanks. set w $window for { set w [ winfo parent $w]} { [winfo class $w] != Toplevel} { set w [ winfo parent $w]} { } $w configure width 790 height 400 ... [GiDlist] Dimensions of the windows menu's
Send by: ascosta at portugalmail.pt
I've allready solved the problem.
I do:
set wnd .gid.conditions1
wm minsize $wnd 790 400
wm maxsize $wnd 790 400
where .gid.conditions1 comes from "winfo parent window".
Thank you for all.
Regards.
__________________________________________________________
Sorry, but still don't works.
Results an error:
Error in tcl script sending event INIT to ::tkpoint::ReadyValue: syntax error in expression " [winfo class $w] != Toplevel": variable references require preceding $
I introduce $ before Toplevel, but :
can't read "Toplevel": no such variable.
The problem is that i don't know what is the toplevel name of my "Point Load" Window.
Because when i do
set w $window
$window isn't the window "Point Load", but $PARENT.
Thanks.
set w $window
for { set w [ winfo parent $w]} { [winfo class $w] != Toplevel} { set w [ winfo parent $w]} {
}
$w configure width 790 height 400
...
[GiDlist] Dimensions of the windows menu's
Send by: Miguel Pasenau ¿Have you take a look in http://www.gidhome.com/ManHtml/tcl8.4.9/html/TkCmd/winfo.htm#M42 ? _____ De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de ascosta at portugalmail.pt Enviado el: jueves, 19 de enero de 2006 12:35 Para: gidlist at gid.cimne.upc.es... [GiDlist] Dimensions of the windows menu's
Send by: ascosta at portugalmail.pt
Yes!
I look carefully to command winfo.
It works also in this way:
set w $window
for { set w [ winfo parent $w]} { [winfo class $w] != "Toplevel"} { set w [ winfo parent ]} {
}
wm minsize $w 790 400
wm maxsize $w 790 400
Thanks.
¿Have you take a look in http://www.gidhome.com/ManHtml/tcl8.4.9/html/TkCmd/winfo.htm#M42 ?
De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu...
[GiDlist] Output of Volume
Send by: Amancherla, Sundar (GE, Research) Hi I have divided a cube ([-0.5,0.5] on all the sides) in to many volumes. I am able to write a batch file for reading the geometry. Is there a function in GiD to output the volumes as dimensionless units as a function of the total cube volume? Thanks very much for your help in advance. Best Regards, -- Aman [GiDlist] Output of Volume
[GiDlist] FW: Mesh error? Id of some distorted elements
Send by: Ernesto Santana Hi I have been working in the model of a structural joint. I have meshed using the GID mesher. I found that some distorted elements on the surfaces of some of the tubes. I have attached the model to this email. Could you please let me know what can I do to sort out this problem? Is this an error in the GID mesher code? The ID of some of the distorted elements are 3422 and 3425. Thank you, Best regards, Ernesto -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060123/b4c7b3ea/attachment.htm... [GiDlist] FW: Mesh error? Id of some distorted elements
Send by: Abel Coll Hi, I'm Abel Coll,
The problem you have is that the you are meshing the model (the cylindrical parts) using a too big meshing size. Due to this, some quadratic nodes can't be mapped correctly into the surface, so as these distorted elements appear.
Try to reduce the mesh size of this surfaces.
I don't know the meshing preferences you are using, but it will be good (in your case) to use "Smoothing-> HighGeom". This kind of smoothing tends to place the mesh nodes minimizing the distance between edges and geometry (surface).
I hope this information could be usefull to you.
Regards,
ABEL
----- Original Message -----
From: Ernesto Santana
To: ...
[GiDlist] stl-import
Send by: Timon Rabczuk Hallo I have some trouble with importing surface mesh from stl-file with GID, version 7.2. The mesh can be imported and is transformed into NURBS. However, when trying to save it, the disk quota of 2GB is exceeded even for a single triangle. Does somebody have an idea how to fix this? Thanks a lot! Best! TImon [GiDlist] stl-import
Send by: Enrique Escolano Maybe is a corrected bug. Try to download the last avalable beta version 7.7.5b If the problem persists, send us a sample model (small if possible), directly to escolano at cimne.upc.edu In other hand, when you import a stl as surf-mesh it's not converted to NURBS, it's created an special pseudo-surface entity where the shape is really the mesh triangulation. Regards Enrique Escolano ----- Original Message ----- From: "Timon Rabczuk" <Timon.Rabczuk at lnm.mw.tum.de> To: <gidlist at gatxan.cimne.upc.es... [GiDlist] stl-import
Send by: Timon Rabczuk Dear Enrique Thanks a lot for the tip. It works with the beta version. Best! Timon >Maybe is a corrected bug. >Try to download the last avalable beta version 7.7.5b > >If the problem persists, send us a sample model (small if possible), >directly to escolano at cimne.upc.edu > >In other hand, when you import a stl as surf-mesh it's not converted to >NURBS, it's created an >special pseudo-surface entity where the shape is really the mesh >triangulation. > >... [GiDlist] Save Problem
Send by: Sofia Costa
Hi GID team!
I've been to try save all assigned data of Condition Point
Load some problems but i did not get success.
My procedures are:
proc SaveGIDProject {filespd} {
set fp [open $filespd w]
if {$fp!=""} {
#save the specific problemtype data file contents...
# global DefaultSearchDirectory
# if { ![info exists DefaultSearchDirectory] ||
# ![file isdirectory $DefaultSearchDirectory]} {
# set DefaultSearchDirectory [pwd]
# }
# set deft $DefaultSearchDirectory
# set aa [.central.s info Project]
# set ProjectName [lindex $aa 1]
# if { [file extension $ProjectName] == ".gid" } {
# set ProjectName [file root $ProjectName]
# }
# if { $ProjectName == "UNNAMED" } {
# tk_dialogRAM .gid.tmpwin error
# [_ "Before importing, a project title is needed. Save
project to get it"]
# error 0 OK
# return
# }
# set directory $ProjectName.gid
#WarnWinText "SaveGIDProject $filespd"
# close $fp
set dirinfo [lindex [.central.s info Project] 1]
set rootname [lindex [file split $dirinfo] end]
set from [file join [lindex [.central.s info Project]
1].gid $rootname.flavia.rst]
#set to [file rootname $filespd].flavia.rst
set to [file rootname $filespd].spd
WarnWin "Saving $to from $from"
}
}
proc AfterOpenFile { filename format error} {
WarnWinText "$filename $format $error"
if {$format == "GIDGEOMETRY_FORMAT"} {
set filespd [file join $filename [file tail
$filename]]
if {[file exists $filespd]} {
set fp [open $filespd r]
#read the specific problemtype data file contents
close $fp
}
}
#WarnWinText "LoadGIDProject $filespd"
}
I'm sending you the file of Point load.
When i save the problem type, the file *.spd is a empty
file.
How can i save the information of
[.central.s info conditions PointLoad] ?
Could you give some advice?
Thanks.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: tkpoint.tcl
Type: application/octet-stream
Size: 39562 bytes
Desc: not available
Url : ...
[GiDlist] Save Problem
Send by: Enrique Escolano Are you really writting something in the spd file?
Instead the commentary: #read the specific problemtype data file
contents
you must off course use the "puts" tcl command to print your desired
information
set fp [open $filespd r]
puts $fp "hello 1"
puts $fp "hello 2"
close $fp
And off course read it again with "read" or "gets"
set fp [open $filespd r]
set a [read $fp] ;#read all contents
close $fp
You can see the tcl manual at:
http://www.gidhome.com/ManHtml/tcl8.4.9/html/TclCmd/contents.htm
But you don't need to save the information returned by [.central.s info
conditions PointLoad], it's an standard GiD condition.!!
----- Original Message -----
From: "Sofia Costa" <...
[GiDlist] Get Elements for selected node
Send by: Björn Brodersen Hi, i need to get the information about what elements are connected to a specific node. I want to select the node via a condition, and write to file what elements are connected to it. Any Ideas? Thanks in advance Bjoern Brodersen -- ------------------------------ Dipl.-Ing. Björn Brodersen MSc TU Braunschweig Institut für Statik Beethovenstr. 51 38106 Braunschweig Tel.: 0531 / 391 - 3670 [GiDlist] Get Elements for selected node
Send by: Enrique Escolano This information is not directly available inside GiD. Do you have direct access from the elements to the nodes, but not the inverse.
The node has only a counter (higherentities) of elements referencing it .
In other hand, you can write a simple tcl procedure in order to do this, for example some like this (it's untested):
proc ElementsOfNodes { } {
foreach elementtype [lrange [GiD_Info mesh] 1 end] {
foreach elem [GiD_Info mesh elements $elementtype 1 end -sublist] {
set num [lindex $elem 0]
set nodes [lrange $elem 1 end-1]
foreach node $nodes {
lappend elemsofnode($node) $num
}
}
}
#return a string with this information
set ret ""
foreach node [lsort -integer [array names elemsofnode]] {
append ret "$node $elemsofnode
"
}
return $ret
}
Note: you can call this tcl procedure from the .bas template, with *tcl(ElementsOfNodes). The returned value is directly printed to the output calculation file.
Regards
Enrique Escolano
----- Original Message -----
From: "Björn Brodersen" <...
[GiDlist] Get Elements for selected node
Send by: Björn Brodersen Hi,
thanks for this first "direction" ;-)
Unfortunately I'm not familiar with tcl, so it will take me some time to
answer whether this code works or not. First try revealed that line
> foreach node [lsort -integer [array names elemsofnode]] {
has [dont know why ;-) ] to be
> foreach node [lsort -integer [array names elemsofnode($node)]] {
to get no error on execution.
Can you give me a hint on how to shorten the procedure of loading the
problemtype over and over again after changing the tcl- file ? This will
surely ease my "trial and error" -tcl learning.
I will report when i get an working tcl function in this thread.
Thanks Bjoern
Enrique Escolano wrote:
>...
[GiDlist] Get Elements for selected node
Send by: Enrique Escolano About my previous code, there is a small error (as I said it was untested) instead append ret "$node $elemsofnode " must be append ret "$node $elemsofnode($node) " but [array names elemsofnode] is ok, it returns a list containing the names of all of the elements in the array I sorted this list with lsort to obtain the list of nodes increasing its number. Can read the standard documentation of the standard Tcl commands at http://www.gidhome.com/ManHtml/tcl8.4.9/html/TclCmd/contents.htm About the special GiD commands, like GiD_Info or GiD_Process, can read the GiD help on Tcl-Tk extension ... [GiDlist] Get Elements for selected node
Send by: Björn Brodersen Great !!!!! This is exactly what i needed... Thanks for the help, Greetings Bjoern Enrique Escolano wrote: > About my previous code, there is a small error (as I said it was untested) > instead > append ret "$node $elemsofnode " > must be > append ret "$node $elemsofnode($node) " > > but [array names elemsofnode] is ok, it returns a list containing the names of all of the elements in the array > I sorted this list with lsort to obtain the list of nodes increasing its number. > > Can read the standard documentation of the standard Tcl commands at ... [GiDlist] Get Elements for selected node
Send by: Björn Brodersen Hi again, can anybody give me a hint about how to get some output out of this function? Testing some "puts" and such doesn't work. I understand the basic Idea of getting the information, but I'm still stucked with the tcl thing. Do I have to use *tcl(ElementsOfNodes [arguments]) ? Please give me an advice how to get some output, even if its only a string "..." from the tcl proc... Greeting and thanks Bjoern Enrique Escolano wrote: > This information is not directly available inside GiD. Do you have direct access from the elements to the nodes, but not the inverse. > The node has only a counter (higherentities) of elements referencing it . ... [GiDlist] MAXIMUM NUMBER OF NODES/ELEMENTS
Send by: Maik Duwensee HI, I am a (very basic) GiD user since version 5.0 and had recently the chance to use the Number 7.?? version (test version from the webpage) . I wanted to create a pretty big triangular mesh. The 'Progress in meshing' window shows that all of the 80 surfaces I have to be meshed. But suddenly GiD crashes without any warning whatsoever. I tried different meshers and played around with the meshing options (or preferences), with no success. I am using GiD under WinXP Pro. (32bit) My questions: Is there a maximum model size for GID, e.g. a maximum number of nodes that can be created? What is the best way to get BIG (2-3 million nodes) meshes? I would appreciate any help. Attached please find the model that I was using. All mesh criteria etc. should be defined. When starting the meshing process, I have choosen 0.25 for the mesh size to use for surfaces without definition. Thanks a lot Maik Maik Duwensee University of California, San Diego Center for Magnetic Recording Research, 0401 9500 Gilman Drive La Jolla, CA 92093-0401 ... [GiDlist] MAXIMUM NUMBER OF NODES/ELEMENTS
Send by: Maik Duwensee Hi again, I tried to get my mesh with the latest beta version 7.7.5b. It seems that this version completely ignores the mesh size definition that I set for certain surfaces although they are displayed correctly in draw-mesh-sizes-surfaces. Any solution out there, thanks a lot Maik At 12:01 PM 1/24/2006, you wrote: >HI, > >I am a (very basic) GiD user since version 5.0 and had recently the >chance to use the Number 7.?? version (test version from the webpage) . >I wanted to create a pretty big triangular mesh. The 'Progress in >meshing' window shows that all of the 80 surfaces I have to be meshed. ... [GiDlist] Entities - Array
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060131/9b02c65f/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060131/9b02c65f/attachment.htm [GiDlist] (no subject)
Send by: Timon Rabczuk Dear sirs I am trying to import two surface meshes (stl-file) into the GID 7.7.2b version. When trying to mesh the two surface meshes, I get the following error message, that is attached to this mail. It is possible to mesh only one surface mesh. With the former GID version, it is possible to mesh the two surface meshes simultaneously. However, it is not possible to safe them since GID produces a very huge file (larger than 2GB) even for only extremly small surface meshes. Could you help me please in this matter? Thanks a lot! Best! Timon -------------- next part -------------- A non-text attachment was scrubbed... Name: error_message_gid1.png Type: image/png Size: 7489 bytes Desc: not available Url : ... [GiDlist] (no subject)
Send by: Maik Duwensee Hi Timon, I had a similar problem when I wanted to create huge meshes I don't know what OS you are using. In case you use Windows, it doesn't allow applications to use more than 2Gbyte of memory. Here is a link, how you can change the gid.exe so that Windows would allow the program to use up to 3Gbyte http://gid.cimne.upc.es/support/gid3gb/index.html hope it helps, viele gruesse nach Muenchen Maik At 01:17 AM 2/2/2006, you wrote: >Dear sirs > >I am trying to import two surface meshes (stl-file) into the GID >7.7.2b version. >... [GiDlist] (no subject)
Send by: Enrique Escolano Hi Timon and Maik, It seems two different problems, In the Timon's case there is not a problem requiring more than 2 GB of RAM for a process, it seems a bug related to the surface-mesh entity (when writting to disk maybe enter in an infinite loop, and will require infinite hard disk) In general GiD can have problems to generate a mesh for this surface-mesh entity (a pseudo-surface with the shape of a mesh). It's much better to start if possible from a real CAD model, with NURBS surfaces, not from an STL mesh. Probably the last GiD beta versions (last available now is the 7.7.5b) doesn't have this bug when writting this entity or when assigning sizes. Note: 7.7.5b compilation has as dependency the MSVCR70.dll MicroSoft library that is not installed on all systems (must be inside the winnt/system32 directory). In some days we will provide a new beta version 7.7.6b without this requirement. We recommend users to expect to this 7.7.6b version. Regards Enrique Escolano ----- Original Message ----- From: "Maik Duwensee" <... [GiDlist] (no subject)
Send by: Maik Duwensee Hi Enrique, thanks for clarifying things. Is the missing msvcr70.dll also related to the fact that the 7.7.5b version ignores assigned unstructured mesh sizes? the sizes I assigned to lines and surfaces appear when I use the mesh draw sizes function, but are completely ignored during meshing. (had a posting on the mail list ealier) thanks again Maik At 02:53 PM 2/2/2006, you wrote: >Hi Timon and Maik, > >It seems two different problems, In the Timon's case there is not a problem >requiring more than 2 GB of RAM for a process, >it seems a bug related to the surface-mesh entity (when writting to disk ... [GiDlist] (no subject)
Send by: Enrique Escolano They are not related problems, if you don't have the msvcr70.dll library, GiD can't start (it will appear a message explaining that this dll is missing) This dll can be downloaded for free from some Internet pages, like this http://www.dll-files.com/dllindex/dll-files.shtml?msvcr70 About the assigned sizes, they are not ignored in 7.7.5b, but in your casethe size assigned to lines is more important that to surfaces or volumes. In your sample 'test.gid' you only assigned sizes to surfaces, but not to lines. GiD uses an advancing-front method, and first are meshed lines as boundary for surfaces. If boundary sizes are bigger, then is not possible to get the internal sizes as smaller as you want (if there is not enought space to decrease sizes, according to the transition paramenter, until the required value). Try to assign size to lines and mesh again. You assigned sizes 0.006, 0.008, 0.01 and 0.02 to the surfaces number 13, 80, 78 and 79. If you calculate the area of this surfaces, you will have about 3.250.000 only for this four surfaces, and you have 76 surfaces more!!. Probably you don't have enougth RAM to generate the whole mesh (also using the related trick to handle until 3GB) You need about 1GB of RAM for each million of elements. Note: you can also create an structured mesh for this surfaces, assigning the number of divisions in each direction, and the element type to triangle. If you have as meshing preference: simmetrical structured triangles, then each square will be divided in four triangles, else only in two triangles. Regards Enrique Escolano ----- Original Message ----- From: "Maik Duwensee" <... [GiDlist] (no subject)
Send by: Maik Duwensee thanks Enrique, I have 8Gbyte of Ram so on the hardware side I should be fine (on a 64bit system) unfortunately GiD is a 32bit application and hence is theoretical limited to 2^32 byte (4Gbyte) is there any way that there will be a release for 64bit soon? thanks again for your help and I wish you a nice weekend Maik At 04:16 AM 2/3/2006, you wrote: >They are not related problems, if you don't have the msvcr70.dll library, >GiD can't start >(it will appear a message explaining that this dll is missing) >This dll can be downloaded for free from some Internet pages, like this >http://www.dll-files.com/dllindex/dll-files.shtml?msvcr70... [GiDlist] (no subject)
Send by: Enrique Escolano Next 7.7.6b beta version will be also available for Linux 64 bits (maybe on next week). Unfortunately, with 64bits can theoretically manage a lot of memory, but in practice now there is only available as in your case about 8Gb, or a little more, and to store each pointer you need double space that with 32bits. Concluding if you have only the double of the memory, maybe now GiD require near the double of the memory for the same mesh. 64 bits will be really interesting when machines have much more RAM than now. Enrique ----- Original Message ----- From: "Maik Duwensee" <maik at talkevax.ucsd.edu... [GiDlist] (no subject)
Send by: Timon Rabczuk Hallo Thanks a lot for the information. I will download the latest beta version and try it again. Best! TImon >Hi Timon and Maik, > >It seems two different problems, In the Timon's case there is not a problem >requiring more than 2 GB of RAM for a process, >it seems a bug related to the surface-mesh entity (when writting to disk >maybe enter in an infinite loop, and will require infinite hard disk) > >In general GiD can have problems to generate a mesh for this surface-mesh >entity (a pseudo-surface with the shape of a mesh). >It's much better to start if possible from a real CAD model, with NURBS ... [GiDlist] Surface mesh
Send by: Timon Rabczuk Dear sirs I am trying to import two surface meshes (stl-file) into the GID 7.7.2b version. When trying to mesh the two surface meshes, I get the following error message, that is attached to this mail. It is possible to mesh only one surface mesh. With the former GID version, it is possible to mesh the two surface meshes simultaneously. However, it is not possible to safe them since GID produces a very huge file (larger than 2GB) even for only extremly small surface meshes. Could you help me please in this matter. Thanks a lot! Best! TImon [GiDlist] Bug in 7.7.2b
Send by: Mark Smith win2k sp4 I find that gig locks up when I try to use the right buttons tool bar & change to view: perspective or distance or fastdraw then hitting escape then seems to kill gid. the buttons (with mouse) still press but nothing happens. It also reports unknown command FastDraw. mouse right button quit doesn't work & I must use task manager to kill gid. regards mark [GiDlist] Bug in 7.7.2b
Send by: Enrique Escolano Hello Mark, Thanks for this report. It seems that in more modern beta versions don't locks, but there is some small bug (when pressing FastDraw, the button don't change to NoFastDraw, an when pressing again it said 'unknown command FastDraw.') It will be corrected in the next beta. Note: You can also to use a window instead the right buttons, it's more comfortable. menu: View->Perspective... Regards Enrique Escolano ----- Original Message ----- From: "Mark Smith" <mark.smith at linx.co.uk> To: "Gidlist (E-mail)" <gidlist at gatxan.cimne.upc.es... [GiDlist] Merging volumes
Send by: Timon Rabczuk Hallo, I have some trouble with merging two volumes in GID, i.e. GID crashes. I used und "Geometry-Edit" the boolean volume operation. Does anybody have an idea? THanks a lot! Best! Timon [GiDlist] running time for meshing unstructured volumes
Send by: Isabel Gil Hello to everybody! On december of 2005 I got the latest beta version so that I could use the SemiStructured option and mesh a volume with unstructured hexahedral elements (structured in one direction and unstructured by lines in the master and slave surfaces). The problem is the time the program takes to mesh the volume, indeed, sometimes it doesn't get to mesh it at all. I don't know if I am doing something wrong. I don't know whether the number of elements may be the problem: If I want to create 22050 hexahedral elements it takes long but it does it, but if I want to create 33075 hexahedral elements the program runs but never finishes. I would be really grateful for your help or for some advice. Best regards Isa ... [GiDlist] running time for meshing unstructured volumes
Send by: Abel Coll Hello, Isa,
I'm Abel Coll (GiD developer). Could you send us the model you are trying to
mesh and the
meshing preferences you have to look for the problem, please?
Regards,
ABEL
----- Original Message -----
From: "Isabel Gil" <misabel at litec.csic.es>
To: "gidlist_emilio" <gidlist at gatxan.cimne.upc.edu>
Sent: Friday, February 03, 2006 1:10 PM
Subject: [GiDlist] running time for meshing unstructured volumes
> Hello to everybody!
>...
[GiDlist] running time for meshing unstructured volumes
Send by: Isabel Gil Hello Abell & co. Sorry for not having written before, I have been abroad. I am attaching my model and, as I said before, I would like to create the following mesh: * Element type would be hexahedra. * The two surfaces on plane xy, unstructured lines of an element size of 0.0005. * The number of divisions in structured direction would be 3. I'm looking forward to hearing from you, best regards! Isa Abel Coll wrote: >Hello, Isa, > >I'm Abel Coll (GiD developer). Could you send us the model you are trying to >mesh and the >meshing preferences you have to look for the problem, please? >... [GiDlist] running time for meshing unstructured volumes
Send by: Abel Coll Hello,
The problem is related with the memory that GiD spends using semi-structured
mesher within hexaedra. I will look for a solution and as soon as it will be
solved it will be available in the next beta version.
Thank you for notifying us this behaviour,
best regards,
ABEL
----- Original Message -----
From: "Isabel Gil" <misabel at litec.csic.es>
To: <gidlist at gatxan.cimne.upc.edu>
Sent: Thursday, February 09, 2006 1:13 PM
Subject: Re: [GiDlist] running time for meshing unstructured volumes
>...
[GiDlist] running time for meshing unstructured volumes
Send by: Abel Coll Hello, Isa,
The problem with the semi-structured mesh is solved. Now your model can be
meshed without problems of excess time or too much memory allocated. In the
next beta version it will be available to all the users.
Thanks again for notifying us this behaivour.
Regards,
ABEL COLL
----- Original Message -----
From: "Isabel Gil" <misabel at litec.csic.es>
To: <gidlist at gatxan.cimne.upc.edu>
Sent: Thursday, February 09, 2006 1:13 PM
Subject: Re: [GiDlist] running time for meshing unstructured volumes
>...
[GiDlist] running time for meshing unstructured volumes
Send by: Isabel Gil Hello Abel, Thank-you for solving the problem. I am really grateful. Then, I will have to download the new beta version, won't I? (what I have now is the 7.7.2b version) The problem is that I have used the three free downloads and I won't be able to test my model. Would it be possible to obtain once more a free password? I look forward to hearing from you. Best regards, Isa Abel Coll wrote: >Hello, Isa, > >The problem with the semi-structured mesh is solved. Now your model can be >meshed without problems of excess time or too much memory allocated. In the >next beta version it will be available to all the users. ... [GiDlist] running time for meshing unstructured volumes
Send by: Abel Coll Hello, Isa,
You can download beta versions as many times as you want for free. There's
no limitation for the number of dowlnoads. The only limitation is in the
password, that have a limitation of time.
On the other side, the password you have can be used in all 7.xxx versions.
ABEL
----- Original Message -----
From: "Isabel Gil" <misabel at litec.csic.es>
To: <gidlist at gatxan.cimne.upc.edu>
Sent: Thursday, February 16, 2006 12:06 PM
Subject: Re: [GiDlist] running time for meshing unstructured volumes
>...
[GiDlist] dependencies error message in .cnd file
Send by: Mark Smith I'm getting the following error message since upgrading to 7.7.2b when
loading my problem type
message 1: -----------
Error in dependencies : (const) invalid left value reference
Air_density_kg/m?
Assuming no dependencies. ({1 {{RESTORE Air_viscosity_Pa.s
#CURRENT#} {RESTORE Air_density_kg/m? #CURRENT#}}} {0 {{HIDE
Air_viscosity_Pa.s #CURRENT#} {HIDE Air_density_kg/m? #CURRENT#}}} )
the offending part in my .cnd file is:
DEPENDENCIES:(1,RESTORE,Air_viscosity_Pa.s,#CURRENT#,RESTORE,Air_density_kg/
m³,#CURRENT#)(0,HIDE,Air_viscosity_Pa.s,CURRENT#,HIDE,Air_density_kg/m³,CURR
ENT#)
QUESTION:Specify_drop_charge#CB#(1,0)
VALUE: 0
it worked with earlier versions? any ideas?
regards
mark
...
[GiDlist] dependencies error message in .cnd file
Send by: Enrique Escolano This is a bug related to the character "³" . This is not an ASCII character, and the .cnd, .mat, etc must be ASCII. I think that this error is corrected in the 7.7.5b beta version. Please, download it an try to load your problemtype. Note: if you don't have the msvcr70.dll library required by this version, can download it from http://www.dll-files.com/dllindex/dll-files.shtml?msvcr70 (and copy this dll inside the gid directory) If the error persists, please, send us the problemtype to correct it for the next version. In other hand, when using your problemtype in other countries, with different encodings, or send your model to foreign users then can't be able to read this non-ASCII files!! If you want to use in any case this non-ASCII characters and have and "international problemtype", last GiD beta versions can manage also *.cnd, *.prb, *mat,... utf-8 files, then this utf-8 file can be read without problems with other encodings, like japanese, etc. You can write your file in utf-8 encoding, and add at the begin a line like this: #encoding utf-8 BOOK: Constraints CONDITION: Point_Constraints CONDTYPE: over points ... This is an ignored commentary for other old GiD versions, and new versions can know that this file uses utf-8 encoding Note: you can convert you old file to utf-8 with a simple Tcl procedure like this: proc ReadExternalFileAndSaveAsUTF {oldfilename newfilename } { set fp [open $oldfilename r] set a [read $fp] close $fp set fp [open $newfilename w] fconfigure $fp -encoding utf-8 puts $fp $a close $fp } Regards Enrique Escolano ----- Original Message ----- From: "Mark Smith" <... [GiDlist] PostPro: handling multi-material elements
Send by: rafadoig at hiroshima-u.ac.jp Hello together, I need your help for following "plotting"-problem: Multi-material elements can have more than 1 material. In attached illustration, a simple model with 3 elements, two materials has been drawn. 1. Left element is filled (100%) with material 1. 2. Right element is filled (100%) with material 2. 3. Center element is mix-filled: 60% with material 1 and 40% with material 2. I want to let GiD plot the center element in 2 colors as the illustration shows. Some idea how to do that? Is it possible at all in current GiD version (Linux: 7.7.2)? As for the left and right element I do following: 1. I make a range table: - 0.0 - 1.0 : material 1 - 10.0 - 11.0 : material 2 2. if f1 is equal 1.0 then fillingrate f = f1 if f2 is equal 1.0 then fillingrate f = 10.0 + f2 I works well. Unfortunately for the center element does not. Thank you in advance for any suggestion Rafael -------------- next part -------------- A non-text attachment was scrubbed... Name: multi-material-element.png Type: image/png Size: 8893 bytes Desc: not available Url : ... [GiDlist] PostPro: handling multi-material elements
Send by: Enrique Escolano I'm sorry, but don't know any trick to plot 'element parts' like you want, GiD always plot the whole element. Perhaps we can consider the possibility of adding this feature for future versions Enrique Escolano ----- Original Message ----- From: <rafadoig at hiroshima-u.ac.jp> To: <gidlist at gatxan.cimne.upc.edu> Sent: Saturday, February 04, 2006 7:54 AM Subject: [GiDlist] PostPro: handling multi-material elements Hello together, I need your help for following "plotting"-problem: Multi-material elements can have more than 1 material. In attached illustration, a simple model with 3 elements, two materials has been drawn. 1. Left element is filled (100%) with material 1. 2. Right element is filled (100%) with material 2. 3. Center element is mix-filled: 60% with material 1 and 40% with material 2. I want to let GiD plot the center element in 2 colors as the illustration shows. Some idea how to do that? Is it possible at all in current GiD version (Linux: 7.7.2)? As for the left and right element I do following: 1. I make a range table: - 0.0 - 1.0 : material 1 - 10.0 - 11.0 : material 2 2. if f1 is equal 1.0 then fillingrate f = f1 if f2 is equal 1.0 then fillingrate f = 10.0 + f2 I works well. Unfortunately for the center element does not. Thank you in advance for any suggestion Rafael ... [GiDlist] PostPro: handling multi-material elements
Send by: Miguel Pasenau At your example there is one problem:
If you define the material properties at the centre of your element only
once, which are two values (one for f1, and another for f2) for the whole
element, then ¿how should the material be drawn? At your picture, you draw
the middle element regarding the two other attached elements, purple on the
left half and blue on the right side. ¿How do you choose these orientation?
Because it is also correct to draw it the other way around: blue on the left
half, and purple on the right side, and so, with the three elements you'll
get a purple-blue-purple-blue pattern.
Moreover, it will be also correct to drawn the top half in purple, and the
bottom half in blue, and so on...
At the moment, because GiD until now can not smooth Gaussian results when
doing a contour ranges (it will change shortly), there are two ways to
achieve this: (I send you an example)
I take advantage on the fact that f2 = 1.0 - f1, and I only will use f1.
1 to smooth the elemental properties to the nodes, in your case:
Node 1 = Node 8 = 1.0
Node 4 = Node 5 = 0.0
Node 2 = Node 7 = (1.0 (from element 1) + 0.6 (from element2)) / 2 = 0.8
Node 3 = Node 6 = (0.0 (from element 3) + 0.6 (from element2)) / 2 = 0.3
2 just define a 4 gauss point result for the elements and define the
property as above:
All gauss points result values of element 1 = 1.0
All gauss points result values of element 3 = 0.0
At the gauss points of element 2:
The two closer to element 1 = (1.0 + 0.6) / 2 = 0.8
The two closer to element 3 = (0.0 + 0.6) / 2 = 0.3
3 (when the smoothing of Gaussian results for contour ranges is implemented)
just define the f1 factor at the centre and you'll get it.
I send you enclosed the example and a couple of pictures, hope it helps
miguel
-----Mensaje original-----
De: ...
[GiDlist] Animation using GID
Send by: devvrath khatri Respected Sir I am working on modeling of Tsunami waves using FEM , for this I have done processing in Mat Lab and now i have results for each time interval. I want to plot this result in GID , some kind of Animation or some thing , currently i am able to view my result by making *.post.res file at different time interval, but i am not able to do animation. Can you please tell me , for doing animation type of thing in which format i have to save my result , so that when i run my GID , it take result from each time step in sequence. Thanking you -- DEVVRATH KHATRI NA02B006 Final year B. Tech IIT Madras Chennai India... [GiDlist] Animation using GID
Send by: Miguel Pasenau Hello Mr. Khatri, ¿do you have a different mesh for each time step? ¿Something like 'time1.post.msh & time1.post.res', 'time2.post.msh & time2.post.res', ..., 'timeN.post.msh & timeN.post.res'? Then you can load them all at once by selecting File->Open multiple in the top menu bar, and then, at the file dialog, by selecting all the files at the same time: with click, shift-click or control-click. Then you can animate the geometry or a contour fill or any other result visualization. If you have, instead, only one mesh, then it is not necessary to save each time step in separate *.post.res files. You can save all the results in the same file and just actualise the step value in the result headers. Look at the 'result block' entry in the manual page ... [GiDlist] Animation using GID
[GiDlist] dependencies error message in .cnd file
Send by: Mark Smith Hi ³ is an ASCII character with code 179 , if you consider it not to be than what code do you go to (128?) but the warning about this character no longer happens in 7.7.5b just as it didn't in earlier versions? This new beta version has a problem in that it writes out the .dat file with incorrect element numbering it starts with a negative number it must interpret my .bas file differently than ver 7.7.2b. It has a line: *operation(ElemsNum-nelem(Linear)-nelem(Tetrahedra)) *ElemsConec *MatProp(0) which in the new version is evaluated differently? also the GiD files format must have changed because when I then reloaded the model in the old version I get a warning that the format is incorrect & gid might crash! fortunately it didn't as I had not saved a backup :-( I shall revert to ver 7.7.2b for now. best regards mark -----Original Message----- From: Enrique Escolano [mailto:... [GiDlist] dependencies error message in .cnd file
Send by: Enrique Escolano Hi Mark, Only first 128 (0 to 127 decimal) codes are ASCII characters, 128 to 265 are extensions like ANSI, etc, and their representation can change in different countries. In other hand, If you only expects to read an write the files using the same encoding, it must work without warnings, but it's better to use only until 127 characters, or else use utf-8 encoding (a multi-byte Unicode implementation, where ASCII characters remain unchanged and are stored in a single byte). About the problem with the bas file. What's the bug? If you use some like: *loop elems *operation(ElemsNum-nelem(Linear)-nelem(Tetrahedra)) *end elems And for example do you only have line and tetrahedra elements, then you will obtain ElemsNum is the element number, for example=1,2,...45 nelem(Linear) is the number or line elements, for example=5 nelem(Tetrahedra) is the number of tetrahedra elements, for example =40, Then you must obtain usually negative numbers: 1-5-40 = -45 !! Maybe your problem is related to the white spaces between numbers, there is some small change between versions. About the warning when reading a last model with previous GiD versions, this is because they are some news that require small changes in the database (for example strings are stored in utf-8 format, and maybe some meshing data also changed, to use semi-structured meshes, etc). And old version can't know this changes, and it appear your related warning about possible incompatibilities, but it's also possible that can be read without problems if there were not used this last features. In the Files Save dialog window, you can also select "Old GiD project 7", then this new features are disregarded, and the file has exactly the old format. Please, if some problem persists with the next 7.7.6b beta version, send us a sample, to correct it as soon as possible. Regards Enrique ----- Original Message ----- From: Mark Smith To: '... [GiDlist] [Fwd: (sense assumpte)]
Send by: rivera at eupm.upc.es Por el momento, quiero que me deis de baja en la lista de usuarios de GiD, gracias. [GiDlist] Entities - Array
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060206/f1e4181d/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060206/f1e4181d/attachment.htm [GiDlist] Entities - Array
Send by: Enrique Escolano You don't need to save the information returned by [.central.s info conditions ...], This information of condition values applied to entities is saved and restored by GiD when you save/read the model. You only need to save the data that you manage at tcl level (the tcl variables that you want to restore and GiD can't provide) When you do .central.s info conditions PointLoad mesh This information is returned as a tcl list (obtained from the internal GiD database), but is not saved anywhere if you don't store it in a tcl variable. When you open the model, can ask GiD again about its internal data set x [.central.s info conditions PointLoad mesh] Enrique ----- Original Message ----- From: ... [GiDlist] DXF and Euler Angle
Send by: Willy S Hi GiD Team 1. I tried to export the .dxf mesh file from GiD but only boundary line is exported. How could we export all the mesh? 2. I would like to display the local axis in the post-processing on the shell surface as it is in Ramseries.. How would we calculate the Euler Angle in GiD option? Regards. --------------------------------- Brings words and photos together (easily) with PhotoMail - it's free and works with Yahoo! Mail. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060209/8961f120/attachment.htm... [GiDlist] DXF and Euler Angle
Send by: Enrique Escolano You can export in DXF only this elements: triangles, quadrilaterals and lines, for example using a template like XDFSAP2000.bas: Menu: Files->Export->Using template .bas (only mesh)->DXFSAP2000 If you want to export geometric entities in DXF, can use the menu: Files->Export->DXF About the local axes, Ramseries calculte its own local axes, and write them as vector results for postprocess. Note: The GiD localaxes of GiD can be printed to the calculation file with this template commands: a.. *LocalAxesDef. This command returns the nine numbers that define the transformation matrix of a vector from the local axes system to the global one. Example: *loop localaxes *format "%10.4lg %10.4lg %10.4lg" x'=*LocalAxesDef(1) *LocalAxesDef(4) *LocalAxesDef(7) *format "%10.4lg %10.4lg %10.4lg" y'=*LocalAxesDef(2) *LocalAxesDef(5) *LocalAxesDef(8) *format "%10.4lg %10.4lg %10.4lg" z'=*LocalAxesDef(3) *LocalAxesDef(6) *LocalAxesDef(9) *end localaxes a.. *LocalAxesDef(EulerAngles). Last command with option EulerAngles, returns three numbers that are the 3 Euler angles (radians) that define a local axes system. Rotation of a vector expressed in terms of euler angles . ----- Original Message ----- From: Willy S To: ... [GiDlist] Entities - Array
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060216/190c667f/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060216/190c667f/attachment.htm [GiDlist] post process display
Send by: Mark Smith win2000 sp4 GiD 7.7.2b I having problems in the post processor displaying body boundaries, how do I get all the edges that appear in the pre-processor to exist as boundaries in the post processor? e.g. draw a cone (geometry:create:object:cone)and mesh it & transfer to the postprocessor (style:body bound), none of the lines from the vertex to the base are shown except at the very tip? this makes it very difficult to do line graphs. regards mark P.S. this is not new, it's been bugging me for a long time. [GiDlist] post process display
Send by: Enrique Escolano In posprocess only can access to mesh entities, not to geometric lines (like a cone generatrix), and geometric lines in general doesn't generate mesh boundaries (only outer boundary and sharp angles between elements are considered as boundaries. Note: you can set this "sharp edge tolerance" angle in posprocess: Options->Geometry->Border angle) In other hand, last GiD version have a new graph feature: Can create a graph between two points, without need to create a cut, convert to set, and create another cut to have the required straight segment. menu: View Result->Graph->Line graph Also exists a new window to create graphs, and change its properties: menu Window->View graphs Regards Enrique ----- Original Message ----- From: "Mark Smith" <... [GiDlist] post process display
Send by: Miguel Pasenau Hello, there is the option from the top menu bar 'Options->Geometry->Border angle' from which you can choose at which angle between elements, the shared edge should be considered a boundary. But, to create a line graph, you can also use 'View results->Graphs->Line graph' to create a line graph across the volume, instead of the border graph. ¿Is that what you want to do? miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] post process display
Send by: Mark Smith Hi Miguel No this isn't what I want but thanks for the tip. See the attached model. I wish to show in the post-processor all the edges that appear in the pre-processor model without having to show the mesh. When you do a line graph you have to pick out the start & end point of the line & only those nodes which lie on this line are actually plotted, or this is how it seems to me, maybe line graph still doesn't work properly or as I think it should work? The lines I'm interested in actually lie on the surface. it would be nice to be able to select a line/curve (one that exists in the pre-processor model) & see how the results vary along it? In other packages I actually put features in the model so I can do exactly this as it makes extracting data along a contour easier if it has been pre-defined. regards mark -----Original Message----- From: Miguel Pasenau [mailto:... [GiDlist] info box size suggestions.
Send by: Mark Smith win2000 sp4 GiD 7.7.2b Hi Gidteam When displaying data at nodes etc in the post-processor or using list & also on the move copy command in the pre-processor the data displayed in the coordinates or value box is too long for the box's window see attached images mypicture1 what you initially see & mypicture2 shows the hidden exponent, this can be very confusing! The box width cannot be changed nor can the format of the displayed number i.e. the number of decimal places shown. Strange but if I use list :points & select the same point it displays the coordinates differently (mypicture3) utilities:move The do extrude checkbox is displayed as if it was the copy page .it cannot be changed but would be better if hidden when on the move page. Regards mark Finding 7.7.2b a little unstable, but7.7.5b caused problems. -------------- next part -------------- A non-text attachment was scrubbed... Name: MyPicture3.gif Type: image/gif Size: 2281 bytes Desc: not available Url : ... [GiDlist] info box size suggestions.
Send by: Enrique Escolano Dear Mark, This problems are related to the truncation of a very small/big number when printing in a string. For copy pourposes, we are using more precision that for list pourposes, because the copy coordinates information is used in geometrical operations to create new entities. Other problem as you said is the fix size of the "copy" entries. We corrected this problems for the next 7.7.7b beta version Regards Enrique ----- Original Message ----- From: "Mark Smith" <mark.smith at linx.co.uk> To: "Gidlist (E-mail)" <gidlist at gatxan.cimne.upc.es... [GiDlist] Problems with meshing
Send by: Timon Rabczuk Dear gid-team, I am working on a project about the ventilation of the human lung and got a complicated geometry of the bronchial-tree in stl format. I was able to create volume in gid and I was also able to mesh pieces of this tree with tetrahedral elements. However, for some pieces, I was not able to create an unstructured mesh. I get the following error message: MeshError: 1 wrong surfaces 611 Couldn't map this point I tried to move this point in a certain neighbourhood but without success. Do you have some tips how to deal with this problem? THanks a lot! Best! TImon [GiDlist] Problems with meshing
Send by: Enrique Escolano Unfortunately a STL mesh is usually a bad source in order to be meshed: it can have bad shape triangles, self-intersections, sharped edges, etc. It's much better having a true CAD model, with smooth surfaces, but probably you can't have this kind of model. Maybe you can manually delete some problematic "surf-mesh" entities (created when importing the stl as "Surface mesh"), and create new surfaces from boundary curves. It exists also a hidden option to generate a volume mesh from a boundary triangle mesh. escape escape escape Meshing MeshFromBoundary and select the boundary triangles (must have all normals pointing inside I think) In similar cases, it was succesful to import the stl mesh, and apply an "edge collapse" with the appropiated tolerance to delete small triangles and smooth bad shaped ones. Then try to use this modified mesh to create surf-mesh entities or try to directly generate the volume mesh from this boundary (if it close a volume) Regards Enrique Escolano ----- Original Message ----- From: "Timon Rabczuk" <... [GiDlist] Problems with meshing
Send by: Timon Rabczuk Hallo, thanks a lot for the tips! Best regards! Timon >Unfortunately a STL mesh is usually a bad source in order to be meshed: it >can have bad shape triangles, self-intersections, sharped edges, etc. It's >much better having a true CAD model, with smooth surfaces, but probably you >can't have this kind of model. > >Maybe you can manually delete some problematic "surf-mesh" entities (created >when importing the stl as "Surface mesh"), and create new surfaces from >boundary curves. > >It exists also a hidden option to generate a volume mesh from a boundary ... [GiDlist] display results logarithmic
Send by: Martin Meiler Hello GiD team,
since we often do acoustic simulations we are looking forward to some
kind of logarithmic result representation. Do you have any plans to
integrate such functionality in GiD.
Thanks for your answer.
Best regards
Martin
--
--------------------------------------------------------------------
_/ _/_/ _/_/_/ Friedrich Alexander Universität Erlangen
_/ _/ _/ _/ Lehrstuhl für Sensorik
_/ _/ _/ Paul-Gordanstr. 3/5, 91052 Erlangen, Germany
_/ _/_/ _/_/
_/ _/ _/ University of Erlangen
_/ _/ _/ _/ Department of Sensor Technology
_/_/_/ _/_/ _/_/_/ Paul-Gordanstr. 3/5, 91052 Erlangen, Germany
Dipl.-Ing. Martin Meiler
tel.: (+49)-9131-85-23140
fax.: (+49)-9131-85-23133
email: ...
[GiDlist] display results logarithmic
Send by: Enrique Escolano What kind of features do you want? Logarithmic axes of graphs? Calculate and represent a new result as a logarimth (or other math functions) of other results? We don't have specific plans about this, but we can think to implement for future versions. We expect your sugestions. Regards Enrique Escolano ----- Original Message ----- From: "Martin Meiler" <Martin.Meiler at lse.eei.uni-erlangen.de> To: <gidlist at gatxan.cimne.upc.edu> Sent: Thursday, February 16, 2006 4:22 PM Subject: [GiDlist] display results logarithmic >... [GiDlist] display results logarithmic
Send by: Martin Meiler Hello, you already mentioned all i would like to to be able of within postprocessing. A first step could be to display results with logarithmic axes. Right now we have the following problem. We have been simulating the distribution of an acoustic wave through a certain material. The losses caused by this material are very high. So right now i can see the reflected waves returning from the surface of this material, but i can not recognize any acoustic wave on the other side of the material. If i set the limits manually, i can see the wave distribution on the other side of the media. I could see both results if there was a possiblity to use logarithmic scaling of the axes or better the contour fill legend. Another nice thing would be to be able to perform some kind of mathematical operation on the results, i.e. calculate the absolute value of the result. Regards Martin Meiler Enrique Escolano wrote: >... [GiDlist] display results logarithmic
Send by: Miguel Pasenau Yes, there are plans to include changing the visualization scale. ¿Are you talking about the result visualization such as Contour fill, or about graphs? ¿or both of them? miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Martin Meiler Enviado el: jueves, 16 de febrero de 2006 16:22 Para: gidlist at gatxan.cimne.upc.edu Asunto: [GiDlist] display results logarithmic Hello GiD team, since we often do acoustic simulations we are looking forward to some kind of logarithmic result representation. Do you have any plans to integrate such functionality in GiD. Thanks for your answer. Best regards Martin -- -------------------------------------------------------------------- _/ _/_/ _/_/_/ Friedrich Alexander Universität Erlangen _/ _/ _/ _/ Lehrstuhl für Sensorik _/ _/ _/ Paul-Gordanstr. 3/5, 91052 Erlangen, Germany _/ _/_/ _/_/ _/ _/ _/ University of Erlangen _/ _/ _/ _/ Department of Sensor Technology _/_/_/ _/_/ _/_/_/ Paul-Gordanstr. 3/5, 91052 Erlangen, Germany Dipl.-Ing. Martin Meiler tel.: (+49)-9131-85-23140 fax.: (+49)-9131-85-23133 email: ... [GiDlist] display results logarithmic
Send by: Martin Meiler I think both options would be useful for our simulations. Martin Miguel Pasenau wrote: > Yes, there are plans to include changing the visualization scale. ¿Are you > talking about the result visualization such as Contour fill, or about > graphs? ¿or both of them? > > miguel > > -----Mensaje original----- > De: gidlist-admin at gatxan.cimne.upc.edu > [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Martin Meiler ... [GiDlist] Streamlines for bricks and quadilaterals?
Send by: Gerhard Link Hello Gid-Team, i want to visualize results of a fluid dynamics simulation. Sadly i recognized that streamlines are not possible for bricks and quadilaterals (both linear and quadratic). Is there a work around available or can you implement the streamline option for other elements? Thanks in advance Yours sincerely Gerhard Martin Meiler wrote: > I think both options would be useful for our simulations. > > Martin > > Miguel Pasenau wrote: > >> Yes, there are plans to include changing the visualization scale. ¿Are you >> talking about the result visualization such as Contour fill, or about ... [GiDlist] Streamlines for bricks and quadilaterals?
Send by: Enrique Escolano Until streamlines are available for hexahedrals/quadrilaterals, you can use some trick, like write for postprocess an auxiliary *.post.msh mesh file, splitting hexahedrals in tetrahedras, and quadrilaterals in triangles. Enrique ----- Original Message ----- From: "Gerhard Link" <glink at lse.e-technik.uni-erlangen.de> To: <gidlist at gatxan.cimne.upc.edu> Sent: Friday, February 17, 2006 5:25 PM Subject: [GiDlist] Streamlines for bricks and quadilaterals? > Hello Gid-Team, >... [GiDlist] Streamlines for bricks and quadilaterals?
Send by: Gerhard Link Hello Enrique, with my GiD version the element splitting creates four triangles of one quadrilateral. Du to that splitting additional nodes are created and the result file of the quadrilaterals can not be used anymore. Is there a element split available which split a quadrilateral into two triangles and does not create additional nodes? Thanks in advance Gerhard Enrique Escolano wrote: > Until streamlines are available for hexahedrals/quadrilaterals, you can use > some trick, like write for postprocess an auxiliary *.post.msh mesh file, > splitting hexahedrals in tetrahedras, and quadrilaterals in triangles. >... [GiDlist] Streamlines for bricks and quadilaterals?
Send by: Enrique Escolano In the Meshing preferences window (menu Utilities->Preferences) If you select "symmetrical structured triangles", then the split is made in four triangles (creating an additional node), else only two triangles will be created (whitout more nodes) Enrique ----- Original Message ----- From: "Gerhard Link" <glink at lse.e-technik.uni-erlangen.de> To: <gidlist at gatxan.cimne.upc.edu> Sent: Friday, February 24, 2006 11:55 AM Subject: Re: [GiDlist] Streamlines for bricks and quadilaterals? >... [GiDlist] display results logarithmic
Send by: Wenshui Gan I was also looking for ways to create contours in GiD with logarithmic intervals. It is a very useful feature in situations where there is a large variation in the gradient of the result. Wenshui Gan Martin Meiler wrote: >I think both options would be useful for our simulations. > >Martin > >Miguel Pasenau wrote: > > >>Yes, there are plans to include changing the visualization scale. ¿Are you >>talking about the result visualization such as Contour fill, or about >>graphs? ¿or both of them? >> >>miguel ... [GiDlist] link to the
Send by: Daniel Marceau Hi, The link to the GiDpost libraries is corrupted: http://gid.cimne.upc.es/support/gidpost.subst How can I download the library. Thanks, Daniel ________________________________________ Daniel Marceau, Ph. D. ing. Professeur Directeur du Regroupement Aluminium (REGAL) Département des Sciences Appliquées Université du Québec à Chicoutimi Bureau: P4-3100 Tél.: (418) 545-5011, Poste 2527 Cell.: (418) 690-7098 Fax.: (418) 545-5012 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060218/c0f13fb7/attachment.htm... [GiDlist] link to the
Send by: Enrique Escolano Now the link is corrected, try to download it again. Thanks for your bug report. Regards Enrique ----- Original Message ----- From: Daniel Marceau To: gidlist at gatxan.cimne.upc.es Sent: Saturday, February 18, 2006 6:23 PM Subject: [GiDlist] link to the Hi, The link to the GiDpost libraries is corrupted: http://gid.cimne.upc.es/support/gidpost.subst How can I download the library. Thanks, Daniel ________________________________________ Daniel Marceau, Ph. D. ing. Professeur Directeur du Regroupement Aluminium (REGAL) Département des Sciences Appliquées Université du Québec à Chicoutimi Bureau: P4-3100 Tél.: (418) 545-5011, Poste 2527 Cell.: (418) 690-7098 Fax.: (418) 545-5012 -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Problemas al cargar el postproceso
Send by: Torres Fernandez, Raúl (MA) Saludos, señores de Soporte GiD Tengo un equipo con las siguientes características: AMD Athlom 64 Processor 3500+ 2,21 GHz 2,00 GB RAM con sistema operativo Microsoft Windows XP Profesional Versión 2002 Service Pack 2. Cuando intento cargar el posproceso de un caso con 331 258 nodos sale el siguiente mensaje: 'La instrucción en "0x0070321b" hace referencia a la memoria en "0x00000000". La memoria no se puede "read". Haga clic en Aceptar para finalizar este programa' y no puedo seguir con el programa. Sin embargo con casos con menor número de nodos sí que puedo (por ejemplo, 206 782 nodos). Estoy utilizando la versión 7.4.7 R1 (internal version 7.4.7b) ¿A qué se debe esto? ¿Cómo podría solucionarlo? Muchas gracias por su atención. Group 1: default disclaimer, iso-8859-1, plaintext... <DIV><FONT size="1">Este mensaje, y cualquier fichero anexo al mismo, contiene informacion de caracter confidencial dirigida exclusivamente a su(s) destinatario(s) y, en su caso, sometida a secreto profesional. Queda prohibida su difusion, copia o distribucion a terceros sin la previa autorizacion escrita. Si Vd. ha recibido este mensaje por error, se ruega lo comunique inmediatamente por esta misma via y proceda a su completa eliminacion. The information in this e-mail, and in any attachments, is confidential and, if any, protected by a professional privilege, and intended solely for the attention and use of the named addressee(s). You are hereby notified that any dissemination, copy or distribution of this information is prohibited without the prior written consent. If you have received this communication in error, please notify the sender by reply e-mail and delete it. ____________________________</FONT></DIV> -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Problemas al cargar el postproceso
Send by: Enrique Escolano Problemas al cargar el postprocesoEl número de nodos no parece excesivamente alto, quizás tenga muchos resultados en el tiempo. ¿cual es el programa de análisis que utiliza? Si es posible pruebe a escribir menos resultados y/o menos pasos de tiempo, sinó es posible que no quepan tantos resultados en la memoria RAM. Enrique Escolano ----- Original Message ----- From: Torres Fernandez ; Raúl (MA) To: gidlist at gatxan.cimne.upc.es Sent: Monday, February 20, 2006 11:43 AM Subject: [GiDlist] Problemas al cargar el postproceso Saludos, señores de Soporte GiD Tengo un equipo con las siguientes características: AMD Athlom 64 Processor 3500+ 2,21 GHz 2,00 GB RAM con sistema operativo Microsoft Windows XP Profesional Versión 2002 Service Pack 2. Cuando intento cargar el posproceso de un caso con 331 258 nodos sale el siguiente mensaje: 'La instrucción en "0x0070321b" hace referencia a la memoria en "0x00000000". La memoria no se puede "read". Haga clic en Aceptar para finalizar este programa' y no puedo seguir con el programa. Sin embargo con casos con menor número de nodos sí que puedo (por ejemplo, 206 782 nodos). Estoy utilizando la versión 7.4.7 R1 (internal version 7.4.7b) ¿A qué se debe esto? ¿Cómo podría solucionarlo? Muchas gracias por su atención. _____________________________ Navantia Este mensaje, y cualquier fichero anexo al mismo, contiene informacion de caracter confidencial dirigida exclusivamente a su(s) destinatario(s) y, en su caso, sometida a secreto profesional. Queda prohibida su difusion, copia o distribucion a terceros sin la previa autorizacion escrita. Si Vd. ha recibido este mensaje por error, se ruega lo comunique inmediatamente por esta misma via y proceda a su completa eliminacion. The information in this e-mail, and in any attachments, is confidential and, if any, protected by a professional privilege, and intended solely for the attention and use of the named addressee(s). You are hereby notified that any dissemination, copy or distribution of this information is prohibited without the prior written consent. If you have received this communication in error, please notify the sender by reply e-mail and delete it. ____________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Problemas al cargar el postproceso
Send by: Miguel Pasenau ¿Did you try the latest versio? The latest one is gid v.7.7.6b which can be found here: <ftp://www.gidhome.com/pub/gid_adds/Windows/GiD7.7.6b-win.exe> ftp://www.gidhome.com/pub/gid_adds/Windows/GiD7.7.6b-win.exe miguel _____ De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Torres Fernandez, Raúl (MA) Enviado el: lunes, 20 de febrero de 2006 11:44 Para: ... [GiDlist] RE: Problemas al cargar Postproceso
Send by: Torres Fernandez, Raúl (MA) Hola Enrique Para el análisis estoy utilizando el propio GiD. El modulo de calculo es el Tdyn3D ver. 4.9b No creo que sea un problema de memoria RAM puesto que el fichero .flavia.res es de 306 098 KB. Ademas el mismo postproceso se puede cargar en un ordenador de menos prestaciones: AMD Athlon XP 2000+ 1.66 GHz 1.50 GB RAM Muchas por su atención. -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu]En nombre de ... [GiDlist] RE: Problemas al cargar Postproceso
Send by: Enrique Escolano Actualiza entonces tu versión de GiD a la última beta disponible 7.7.6b, probablemente tendrá correcciones al respecto. (en esta beta 7.7.6b hay un pequeño problema al abrir ventana de diálogo de abrir fichero, debes hacer una copia de la dll scripts cl eg clreg11.dll junto a gid.exe, en breves dias sacaremos otra beta con este problema corregido) Si continua el problema al cargar los resultados, envíanos el ejemplo. Enrique ----- Original Message ----- From: <Torres Fernandez>; "Raúl (MA)" <rtorresf at navantia.es... [GiDlist] GiD Crash
Send by: Martin Meiler Hello everybody,
is there any reason why gid crashes at startup whenever an option
unknown to gid is supplied to the executable.
I entered
gid -P ourProblemType
instead of
gid -p ourProblemType
ans gid crashed. But gid crashed even on every other option supplied to
the executable, that was unknown to gid.
OS: SuSE Linux 9.3
GiD: gid7.7.2b
Another question. Is there any reason why the latest gid beta is only
available for windows?
Best regards
Martin
--
--------------------------------------------------------------------
_/ _/_/ _/_/_/ Friedrich Alexander Universität Erlangen
_/ _/ _/ _/ Lehrstuhl für Sensorik
_/ _/ _/ Paul-Gordanstr. 5, 91052 Erlangen, Germany
_/ _/_/ _/_/
_/ _/ _/ University of Erlangen
_/ _/ _/ _/ Department of Sensor Technology
_/_/_/ _/_/ _/_/_/ Paul-Gordanstr. 5, 91052 Erlangen, Germany
Dipl.-Ing. Martin Meiler
tel.: (+49)-9131-85-23140
fax.: (+49)-9131-85-23133
email: ...
[GiDlist] Problems openning a ProblemType
Send by: ascosta79 at gmail.com Hello to everybody! I created my problemtype where I integrated the menu Heat Boundarys such as in the Nastran. When I save my project and later I try to open it, the assigned data are lost and disappears everything from the menu entities. But in the case of nastran this doesn't happens. What do I have to include in mine code to don't lost all information? I would be really grateful for your help or for some advice. Best regards Andre -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060224/d2655146/attachment.htm... [GiDlist] export a mesh without its boundary-nodes
Send by: Nico Gödel Hello, I would like to export a mesh of triangles without the boundary-nodes. In the node-list, there should be all nodes, except those on the inner boundary, is it possible??? How should the export-template look like?? Greetings to spain, Nico Gödel -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060224/3b306f4a/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 102076 bytes Desc: not available Url : ... [GiDlist] surface intersection bug
Send by: Mark Smith win2000 sp4 GiD7.7.6b doesn't do surface intersection or multiple surface ineresection properly. GiD7.7.2b works properly for surface intersection. regards mark [GiDlist] post.mesh Import
Send by: Nico Gödel Hello
I would like to import a post.mesh-File with a Volume-Mesh of Tetrahedras
and a Surface-mesh which consists of Triangles.
It works only when I delete the Volumes an there are only the Triangles, but
I need both.
The error message from GiD 7.7.5 is
MESH Dimension 3 ElemType Tetrahedra Nnode 4
Coordinates
1 -1.8617500000000001e-01 -7.3068200000000000e-02
-2.0000000000000001e-01
2 -1.9498599999999999e-01 -4.4504200000000001e-02
-2.0000000000000001e-01
3 -2.0661099999999999e-01 -5.5377700000000002e-02
-2.0000000000000001e-01
4 -1.9498599999999999e-01 4.4504200000000001e-02
-2.0000000000000001e-01
.
.
.
8079 0.0000000000000000e+00 1.3999999999999999e+00
-1.1316400000000000e+00
8080 0.0000000000000000e+00 9.4140699999999999e-01
-1.6000000000000001e+00
8081 0.0000000000000000e+00 1.3999999999999999e+00
-1.6000000000000001e+00
end coordinates
Elements
1 3500 3596 3745 3773
2 3071 3268 3270 3386
3 3170 3343 3401 3585
.
.
.
41034 1011 1034 1037 1691
41035 1018 1036 1037 1691
end elements
MESH Dimension 3 ElemType Triangle Nnode 3
Coordinates
#They are already above
end coordinates
Elements
1 7871 7868 7862
2 7886 7888 7894
3 8024 8030 8029
.
.
.
399 8080 8081 8073
400 7828 7827 7830
end elements
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] post.mesh Import
Send by: Nico Gödel Hello
I would like to import a post.mesh-File with a Volume-Mesh of Tetrahedras
and a Surface-mesh which consists of Triangles.
It works only when I delete the Volumes an there are only the Triangles, but
I need both.
The error message from GiD 7.7.5 is
Reading mesh in linenode 0 out of range: 0 not in [ 1, 8081] node 0 out of
range.
.post.msh-file:
MESH Dimension 3 ElemType Tetrahedra Nnode 4
Coordinates
1 -1.8617500000000001e-01 -7.3068200000000000e-02
-2.0000000000000001e-01
2 -1.9498599999999999e-01 -4.4504200000000001e-02
-2.0000000000000001e-01
3 -2.0661099999999999e-01 -5.5377700000000002e-02
-2.0000000000000001e-01
4 -1.9498599999999999e-01 4.4504200000000001e-02
-2.0000000000000001e-01
.
.
.
8079 0.0000000000000000e+00 1.3999999999999999e+00
-1.1316400000000000e+00
8080 0.0000000000000000e+00 9.4140699999999999e-01
-1.6000000000000001e+00
8081 0.0000000000000000e+00 1.3999999999999999e+00
-1.6000000000000001e+00
end coordinates
Elements
1 3500 3596 3745 3773
2 3071 3268 3270 3386
3 3170 3343 3401 3585
.
.
.
41034 1011 1034 1037 1691
41035 1018 1036 1037 1691
end elements
MESH Dimension 3 ElemType Triangle Nnode 3
Coordinates
#They are already above
end coordinates
Elements
1 7871 7868 7862
2 7886 7888 7894
3 8024 8030 8029
.
.
.
399 8080 8081 8073
400 7828 7827 7830
end elements
Greetings from Hamburg, Germany,
Nico Gödel.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] post.mesh Import
Send by: Enrique Escolano Hello, The element number can't be repeated, also for different element types (e.g. triangle and tetrahedra). Start the triangle numbers by 41036 (or other unused number) instead 1 Enrique ----- Original Message ----- From: Nico Gödel To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, March 01, 2006 9:40 AM Subject: [GiDlist] post.mesh Import Hello I would like to import a post.mesh-File with a Volume-Mesh of Tetrahedras and a Surface-mesh which consists of Triangles. It works only when I delete the Volumes an there are only the Triangles, but I need both. The error message from GiD 7.7.5 is Reading mesh in linenode 0 out of range: 0 not in [ 1, 8081] node 0 out of range. .post.msh-file: MESH Dimension 3 ElemType Tetrahedra Nnode 4 Coordinates 1 -1.8617500000000001e-01 -7.3068200000000000e-02 -2.0000000000000001e-01 2 -1.9498599999999999e-01 -4.4504200000000001e-02 -2.0000000000000001e-01 3 -2.0661099999999999e-01 -5.5377700000000002e-02 -2.0000000000000001e-01 4 -1.9498599999999999e-01 4.4504200000000001e-02 -2.0000000000000001e-01 . . . 8079 0.0000000000000000e+00 1.3999999999999999e+00 -1.1316400000000000e+00 8080 0.0000000000000000e+00 9.4140699999999999e-01 -1.6000000000000001e+00 8081 0.0000000000000000e+00 1.3999999999999999e+00 -1.6000000000000001e+00 end coordinates Elements 1 3500 3596 3745 3773 2 3071 3268 3270 3386 3 3170 3343 3401 3585 . . . 41034 1011 1034 1037 1691 41035 1018 1036 1037 1691 end elements MESH Dimension 3 ElemType Triangle Nnode 3 Coordinates #They are already above end coordinates Elements 1 7871 7868 7862 2 7886 7888 7894 3 8024 8030 8029 . . . 399 8080 8081 8073 400 7828 7827 7830 end elements Greetings from Hamburg, Germany, Nico Gödel. -------------- next part -------------- An HTML attachment was scrubbed... URL: ... AW: [GiDlist] post.mesh Import
Send by: Nico Gödel Dear Enrique, Thank you very much for your fast answer. The enumeration of my Elements was definitely false, but that didn´t solve the problem. GiD 7.7.5b is still giving me the error message Reading mesh in linenode 0 out of range: 0 not in [ 1, 8081] node 0 out of range. There is no node listed with 0 in my mesh, not in the Triangle- and not in the Tetrahedra-List. Even when I delete the second mesh with the Triangle-Elements, the import isn´t working. But when I delete the tetrahedras, it works. I hope you´ll get an answer for my question, i´m working for my diploma thesis and there isn´t much time left. Thank in advance and greetings from Hamburg to Barcelona, Nico Gödel. _____ Von: ... [GiDlist] post.mesh Import
Send by: Miguel Pasenau Hello, Following the message, it seems to me that in the connectivities of the tetrahedra there is a node with number 0. It is strange that in the message does not appear the number of the line where the problem lies, normally it only happens when a binary file is read, but not for ascii meshes. Another problem that I see is that you are giving the same element numbers to tetrahedra and triangles, its better to give them different numbers, because when You read them in GiD and you want to see element number 1, which one should be picked: ¿the tetrahedron or the triangle? ¿can you send me the file to take a closer look? miguel _____ De: ... [GiDlist] curved cylinder that goes thinner
Send by: MArtin Koske hi, I need some help by creating a cylinder with a curve and the end of the curved cylinder is thinner then the beginning. I can create a circle and rotate it by an angle of 60. So that I get an curved cylinder. But after that I don´t know how I can make the ending thinner. I made an simple picture for my problem, so you can understand it without reading my bad english. A friend told me to do this by using the copy-window, entities type: surface transformation: sweep Natural Twist Do Extrude: Volume and: end scale: =0.7 but in my copy-window there is no field for end scale!!! regards Martin [GiDlist] Fwd: curved cylinder that goes thinner
Send by: MArtin Koske hi, I need some help by creating a cylinder with a curve and the end of the curved cylinder is thinner then the beginning. I can create a circle and rotate it by an angle of 60. So that I get an curved cylinder. But after that I don´t know how I can make the ending thinner. I made an simple picture for my problem, so you can understand it without reading my bad english. A friend told me to do this by using the copy-window, entities type: surface transformation: sweep Natural Twist Do Extrude: Volume and: end scale: =0.7 but in my copy-window there is no field for end scale!!! regards Martin -------------- next part -------------- A non-text attachment was scrubbed... Name: cylinderpic.jpg Type: image/jpeg Size: 179171 bytes Desc: not available Url : ... [GiDlist] Fwd: curved cylinder that goes thinner
Send by: Enrique Escolano You must download one of the last beta versions to have this 'end scale' field. http://www.gidhome.com/download/do07.subst The last one is the 7.7.6b but we will made available the 7.7.7b in few days. I recommend you to expect this version. Regards Enrique Escolano ----- Original Message ----- From: "MArtin Koske" <martin.koske at medien.uni-weimar.de> To: <gidlist at gatxan.cimne.upc.es> Sent: Thursday, March 02, 2006 12:18 PM Subject: [GiDlist] Fwd: curved cylinder that goes thinner >... [GiDlist] smelt volumes
Send by: MArtin Koske hi, i have some problems by smelting two volumes. when i use the function volume boolean op. -> union, then the program displays the message not close volume. How to smelt two curved cylinders? regards Martin in the file verz60_1.gid.rar are the two cylinders that i want to smelt! -------------- next part -------------- A non-text attachment was scrubbed... Name: verz60_1.gid.rar Type: application/octet-stream Size: 8468 bytes Desc: not available Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060307/3f6e5e5f/attachment.obj ... [GiDlist] smelt volumes
Send by: Enrique Escolano If the boolean operation fail, you can manually do this steps create the surface intersections, correct some problems, delete internal parts, and create again the volume with the new boundary. Note: With last GiD versions, you can't intersect two surfaces sharing a curve (to avoid problems and to be fast) your two cylinders share a circumference, then is necessary some trick, like uncollapse them to not share curves, and then create the intersection between surfaces. I attach your model with the volumes union Regards Enrique ----- Original Message ----- From: "MArtin Koske" <martin.koske at medien.uni-weimar.de... [GiDlist] smelt volumes
Send by: MArtin Koske Hi Enrique, i tried to do it like you told me to smelt the volumes. but it doesn´t work. - at first i delete the volume - then i uncollapse the surfaces - after that i use geometry -> edit -> intersection -> Surface-surface but then i don´t know what to do! i send this file to you with what i´ve done can you do it with that file again and describe me exactly what you did in a short text. like what button to press! (I use GiD7.7.6b) regards Martin > If the boolean operation fail, you can manually do this steps create the > surface intersections, correct some problems, delete internal parts, and ... [GiDlist] Question about .mat
Send by: pablo p del castillo Hello; I created a *.mat in my problem, when i wish to assign that material to some geometry entity it give me lines, surfaces, etc.. like options, how can i limit that options, sample if i want that the mat only can be assigned to lines?? Advanced Thanks, Pablo --------------------------------- LLama Gratis a cualquier PC del Mundo. Llamadas a fijos y móviles desde 1 céntimo por minuto. http://es.voice.yahoo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060307/7b9b7941/attachment.htm... [GiDlist] Question about .mat
Send by: Enrique Escolano In order to do thinks like this, we provide a tcl procedure: GiD_DataBehaviour , to be called from your problem type.
Read Help about Tcl/Tk extension->Custom Data windows->Data Windows Behaviour:
Data Windows Behaviour
In this subsection we explain a tcl procedure used to configure the common behaviour of Materials. We are working in providing a similar functionality for Conditions using the same interface.
GiD_DataBehaviour controls properties of data windows for Materials and Conditions (not currently implemented). For Materials we can modify the behaviour of assign, draw, unassign, impexp (import/export), new, modify and delete. We can also specify the entity type list in assign option throught the subcommands geomlist and meshlist.
The syntax of the procedure is as follow:
GiD_DataBehaviour data_class name ?cmd? proplist
where,
a.. data_class could be: "material" if we want to modify the behaviour of a particular material or "materials" if a whole book must be modified.
b.. name depending on the value of data_class the argument name takes the value of a material's name or a book's name.
c.. cmd can take one of the values: show, hide, disable, geomlist and meshlist.
d.. proplist is a list of options or entity type. When cmd is show, hide or disable then proplist could be a subset of {assign draw unassign impexp new modify delete}. If cmd is show it makes the option visible, if the value is hide then the option is not visible and when the value is disable then the option is visible but unavailable. When cmd if geomlist then then property list can take a subset of {points lines surfaces volumes} defining the entities that can get the material assigned when in geometry mode, if the value of cmd is meshlist then proplist can take the value elements. Take into account that only elements can gets a material assigned in mesh mode. If cmd is not provided we obtain as a result the corresponding state for each of the items provided in proplist.
Example:
GiD_DataBehaviour materials Table geomlist {surfaces volumes}
GiD_DataBehaviour materials Solid hide {delete impexp}
----- Original Message -----
From: pablo p del castillo
To: ...
[GiDlist] GiD crashes in batch mode
Send by: José Pereda Llamas Hello,
I use to run GiD in batch mode, trough command line. With Gid 7.2 I'm
successful launching problems such as "c:<gid directory>gid.exe -b
batchfile.bat -n problem.gid".
Now I try to use the new beta version 7.7.6b and GiD crashes, giving the
typical windows message of "GiD has detected a problem and should be
closed".
I even try launching GiD alone ("c:<gid directory>gid.exe"), and it
also crashes.
Any idea of what could be the problem?
My OS is windows XP.
Thanks in advance for your help.
Jose
[GiDlist] GiD crashes in batch mode
Send by: Enrique Escolano Hi Jose, If I try to launch GiD 7.7.6b alone, it works well, and also with a simple batch file How do you launch it? from a DOS console?, from other code? Can you start GiD 7.7.6 from the direct access icon? Can you then read this batch? Try to remove the -n flag I don't have any idea about this problem, maybe must change before to the GiD directory, or there is some problem with spaces in the names. Today we will made available for download the 7.7.7b beta, maybe this problem doesn't appear with this version. Regards Enrique ----- Original Message ----- From: "José Pereda Llamas" <pereda at eis.uva.es... [GiDlist] GiD crashes in batch mode
Send by: José Pereda Llamas An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060308/1e888abb/attachment.htm [GiDlist] new GiD beta for Linux
Send by: Martin Meiler Hi GiD developers,
could you please provide the lastest GiD beta release for the linux/unix
platform?
Thanks a lot.
Best regards
Martin
--
--------------------------------------------------------------------
_/ _/_/ _/_/_/ Friedrich Alexander Universität Erlangen
_/ _/ _/ _/ Lehrstuhl für Sensorik
_/ _/ _/ Paul-Gordanstr. 5, 91052 Erlangen, Germany
_/ _/_/ _/_/
_/ _/ _/ University of Erlangen
_/ _/ _/ _/ Department of Sensor Technology
_/_/_/ _/_/ _/_/_/ Paul-Gordanstr. 5, 91052 Erlangen, Germany
Dipl.-Ing. Martin Meiler
tel.: (+49)-9131-85-23140
fax.: (+49)-9131-85-23133
email: ...
[GiDlist] Tiger breaks GiD 7.2
Send by: Karl A. Fisher Help ! Ive upgraded to OS 10.4.5 and GiD 7.2.1 no longer works. Ive read posts that the OS 10.4 is missing the libGLU.dylib and that it can be added from the 10.3 operating system I have the .dylib file but what is the path where it should go ? Thanks in advance __________________________________________________________________ Karl A. Fisher, -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 411 bytes Desc: not available Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060309/b8ab0a9e/attachment.bin... [GiDlist] ::GidUtils::DisableGraphics
Send by: Georg Haasemann Hello,
I need some help to disable a request of GiD. One part of a tcl
procedure is about to delete the existing mesh. This is done be
.central.s process escape escape escape escape Meshing CancelMesh
In the following some nodes and elements will be created. But the mesh
is not deleted until the dialog is answered. So I get problems to define
new nodes since the old mesh still exists. As I understand the procedure
::GidUtils::DisableGraphics disables the graphic only and not this request.
Are there any solutions?
Thanks in advance for your help.
Georg
[GiDlist] ::GidUtils::DisableGraphics
Send by: Enrique Escolano You must provide in advance the answer to the question, then is not necessary to open the window to ask the user.
Some like this:
if { [lindex [GiD_Info mesh] 0] > 0] } {
#if exists mesh, cancel it
GiD_Process Mescape Meshing CancelMesh Yes
}
Regards
Enrique Escolano
----- Original Message -----
From: "Georg Haasemann" <georg.haasemann at gmx.de>
To: "GID-Liste" <gidlist at gatxan.cimne.upc.es>
Sent: Friday, March 10, 2006 5:35 PM
Subject: [GiDlist] ::GidUtils::DisableGraphics
>...
[GiDlist] New GiD beta version for Windows: 7.7.7b
Send by: Enrique Escolano Dear All, There is available a new GiD beta version for Windows: 7.7.7b, with some new features and corrected bugs. Can be downloaded at: http://www.gidhome.com/download/do07.subst Some new features of latest versions: - Several macros added to the toolbar - 3D Studio .3ds import - Mesh criteria option to force the node of a point on the surface mesh - Draw more mesh criteria - Automatic rotation center preference, and dynamic zoom centered on the first picked coordinate - Previous and next view buttons - Notes editor - Show graphs window replacing the old border graph window - Create graphs cutting between two points - Multiple mesh support ... Can read all news from the last official version in Help->What's new->Last detailed changes from version 7.2 to 7.7.7b Best regards _______________________________________________________ Enrique Escolano ... [GiDlist] New GiD beta version for Windows: 7.7.7b
Send by: Martin Meiler Hi Enrique, what about a new GiD beta version for Linux? Thanks for your answer. Regards Martin Enrique Escolano wrote: > Dear All, > > There is available a new GiD beta version for Windows: 7.7.7b, with some > new features and corrected bugs. > > Can be downloaded at: http://www.gidhome.com/download/do07.subst > > Some new features of latest versions: > > - Several macros added to the toolbar > - 3D Studio .3ds import > - Mesh criteria option to force the node of a point on the surface mesh ... [GiDlist] New GiD beta version for Windows: 7.7.7b
Send by: Karl A. Fisher How about one for OS X 10.4.... ? Regards Karl On Mar 13, 2006, at 7:49 AM, Martin Meiler wrote: > Hi Enrique, > > what about a new GiD beta version for Linux? > > Thanks for your answer. > > Regards > > Martin > > Enrique Escolano wrote: >> Dear All, >> >> There is available a new GiD beta version for Windows: 7.7.7b, with >> some >> new features and corrected bugs. >> >> Can be downloaded at: http://www.gidhome.com/download/do07.subst... [GiDlist] GiD beta version for Linux (32 and 64 bits): 7.7.7b
Send by: Miguel Pasenau Hello people, The new GiD beta version 7.7.7b is also available for Linux 32bits and AMD 64 bits. You can get it from here: 32 bits version: For a Linux with kernel 2.2 and up: ftp://www.gidhome.com/pub/gid_adds/Linux/kernel-2.2/gid7.7.7b-dyn-k2.2.tar.g z For a Linux with kernel 2.6 and up: ftp://www.gidhome.com/pub/gid_adds/Linux/kernel-2.6/gid7.7.7b-dyn-k2.6.tar.g z AMD 64 bits version: ftp://www.gidhome.com/pub/gid_adds/Linux/amd64/gid7.7.7b-dyn-64.tar.gz... [GiDlist] GiD beta version for Linux (32 and 64 bits): 7.7.7b
Send by: Maik Duwensee Hi, what about a 64bit version for Windows XP x64, would love to have it for big meshes. I am a kind of limited with the 'unleashed' 32bit version that is running on 64bit system and can hence utilize 4Gbyte Maik At 07:18 AM 3/14/2006, you wrote: >Hello people, > >The new GiD beta version 7.7.7b is also >available for Linux 32bits and AMD 64 bits. >You can get it from here: > >32 bits version: > > For a Linux with kernel 2.2 and up: > ><ftp://www.gidhome.com/pub/gid_adds/Linux/kernel-2.2/gid7.7.7b-dyn-k2.2.tar.gz... [GiDlist] GiD beta version for Linux (32 and 64 bits): 7.7.7b
Send by: Karl A. Fisher Greetings Miguel, I suppose Both! On Mar 14, 2006, at 3:18 PM, Miguel Pasenau wrote: > > Hello people, > > The new GiD beta version 7.7.7b is also available for Linux 32bits and > AMD 64 bits. > You can get it from here: > > 32 bits version: > > For a Linux with kernel 2.2 and up: > > ftp://www.gidhome.com/pub/gid_adds/Linux/kernel-2.2/gid7.7.7b-dyn- > k2.2.tar.gz > ... [GiDlist] [gidlist]two volumes become one
Send by: MArtin Koske hi, i used all the functions in GiD and nothing happens. can you please give me a short introduction in how to smelt two volumes. I give you an gid file with two cylinder that I wanne smelt. can make me a short text with what to do? I need this for some blood simulations with Elmer. When I don´t smelt the volumes the flow simulation of blood is false!! thangs martin -------------- next part -------------- A non-text attachment was scrubbed... Name: test45_1.gid.rar Type: application/octet-stream Size: 16832 bytes Desc: not available Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060314/0f271478/attachment.obj... [GiDlist] [gidlist]two volumes become one
Send by: Enrique Escolano The intersections don't work well in your case (is a numerical operation an can fail), but you can manually correct the problems. I did something like this: - Delete bad small segments. - Divide intersection lines by near points, to trim some bad part - Move line points, to the apropiated location (can pick point in line to get a point over a curve) - Intersect lines if necessary - Split surfaces in two parts - Delete unwanted parts - Finally create the volume from the boundary surfaces I attach your model corrected. ----- Original Message ----- From: "MArtin Koske" <martin.koske at medien.uni-weimar.de... [GiDlist] Difficulties with mesh generation
Send by: Timon Rabczuk Dear GID team I am trying to mesh a complicated tree structure-the bronchial tree of the human lung- with GID and I am having severe difficulties to generate the mesh. I have the bronchial tree as stl-file. Since it is not possible to mesh the entire structure with GID, I split the tree in several parts. I was successful in meshing every sinlge part of the tree. However, when putting the parts together into one model and merging (with collapse surfaces) the tree, GID crashes with the segmentation fault. Do you have any suggestions what to do? Thanks a lot for your help! Best! Timon P.S. If it is helpful, I can send also a sample.... [GiDlist] Difficulties with mesh generation
Send by: Enrique Escolano Probably GiD crash when collapsing "surfmesh" entities, because is an unsual entity. Can try to delete the parts to be shared between parts, and create true NURBS surfaces from it's boundaries. In general , try to manually change as "surfmeshes" as possible by true NURBS. If you don't be able to generate this mesh, send us the model (compressed) directly to escolano at cimne.upc.edu Regards Enrique Escolano ----- Original Message ----- From: "Timon Rabczuk" <Timon.Rabczuk at lnm.mw.tum.de... [GiDlist] Postprocessing Proposal
Send by: Martin Meiler Hello GiD-Team,
i have one proposal for GiD in post-processing mode.
When using the "View Results" window, you can select to view a deformed
mesh or view results on this deformed mesh.
But if i change the result step the displayed result gets out of sync.
The question is if there is a possibility to syncronize the result step
in the "View Results" and in the "Main Mesh" tab of the "View Results"
window to get proper results.
Regards
Martin
--
--------------------------------------------------------------------
_/ _/_/ _/_/_/ Friedrich Alexander Universität Erlangen
_/ _/ _/ _/ Lehrstuhl für Sensorik
_/ _/ _/ Paul-Gordanstr. 5, 91052 Erlangen, Germany
_/ _/_/ _/_/
_/ _/ _/ University of Erlangen
_/ _/ _/ _/ Department of Sensor Technology
_/_/_/ _/_/ _/_/_/ Paul-Gordanstr. 5, 91052 Erlangen, Germany
Dipl.-Ing. Martin Meiler
tel.: (+49)-9131-85-23140
fax.: (+49)-9131-85-23133
email: ...
[GiDlist] Postprocessing Proposal
Send by: Miguel Pasenau O.k., noted. But in the mean time, what you can do is select the c.fill & deformation in the 'View results' window, and in the Animation window use the slide bar to change the step. Then you'll get both, c.fill & deformation sinchronized in the same step. miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Martin Meiler Enviado el: miércoles, 22 de marzo de 2006 16:13 Para: gidlist at gatxan.cimne.upc.es... [GiDlist] border graph
Send by: Mark Smith win2000sp4 gid 7.7.7b Hi GiD Team improvement request: Can I ask for a extra option to the border graph? When saving the graph data can there be an option to save the x,y,z coordinates of the points and the value? Has there been any thought to including the possibility of evaluating functions/integrals along predefined paths in the postprocessor? bug/feature report: postprocessing with render type set to "smooth" produces some odd black line features on surface model, flat & normal work fine (software openGL)? best regards mark [GiDlist] GiD version 8.0c
Send by: Mark Smith Hi Gid team Now that 8.0c has been released will GiD7.7.7b be the last beta of version 7 ? In what way is 8.0c different to 7.7.7b ? regards mark [GiDlist] GiD version 8.0c
Send by: Enrique Escolano You are right, the 7.7.7b will be the last 7.x beta. 8.0c is really very similar to 7.7.7 (is only from a month ago), but has a lot of differences with the official 7.2 version (released more than tree years ago), and it require a new licence system. Now all beta versions for a long time will be 8.x, and it will be possible to use them with the 8 password. At this moment (until official 8.0 version will be released) only can get temporary trial passwords for this 8.0c version. You can see what's new from 7.2 to 8.0c at http://www.gidhome.com/support/whatsnew8 Regards Enrique Escolano ----- Original Message ----- From: "Mark Smith" <... [GiDlist] GiD version 8.0c
Send by: José Pereda Llamas An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060328/118db864/attachment.htm [GiDlist] GiD version 8.0c
Send by: Enrique Escolano Hi Jose, Can you send me an example? (the batch file, the model, and the problemtype) It seems a little strange to load a batch file, and after load a model over them, It seems more logic to load the model with a line inside the batch file. Regards Enrique ----- Original Message ----- From: José Pereda Llamas To: gidlist at gatxan.cimne.upc.edu Sent: Tuesday, March 28, 2006 10:14 AM Subject: Re: [GiDlist] GiD version 8.0c Hello and congratulations for the new release candidate! I use to run GiD in batch mode, trough command line. With Gid 7.2 I'm successful launching problems such as "c:<gid directory>gid.exe -b batchfile.bat -n problem.gid". Now I try to use the new version 8.0c and GiD crashes (as the last 7.x betas), giving the typical windows message of "GiD has detected a problem and should be closed". If I avoid the "-n" option ( "c:<gid directory>gid.exe -b batchfile.bat problem.gid") GiD opens but it applies the batch to a new problem, giving severals errors. It works without the 'problem.gid' and with '-n2' ("c:<gid directory>gid.exe -b batchfile.bat -n2"), but with the problem ("c:<gid directory>gid.exe -b batchfile.bat -n2 problem.gid"), it hungs up. Any idea of what could be the problem? My OS is windows XP. Thanks in advance for your help. Jose Enrique Escolano escribió: You are right, the 7.7.7b will be the last 7.x beta. 8.0c is really very similar to 7.7.7 (is only from a month ago), but has a lot of differences with the official 7.2 version (released more than tree years ago), and it require a new licence system. Now all beta versions for a long time will be 8.x, and it will be possible to use them with the 8 password. At this moment (until official 8.0 version will be released) only can get temporary trial passwords for this 8.0c version. You can see what's new from 7.2 to 8.0c at ... [GiDlist] mesh help
Send by: lu hu hi GID team,
I'm using GID to generate 3-D meshes right now. I want to mesh a
structured volume like a simple cube with hexahedra element. The problem
is, after meshing the calculated result projecname.dat shows the number of
grid elements was 0 which results in a failure in my subsequent
application. However, the grid number for default meshing with tetrahedral
element is not 0. Does anyone know what the problem is?
Regards.
Hu X.R.
P.S. I have tried two ways to generate the cube: by creating an prism
object with 4 edges or by creating a bottom plane with pre-created 4 points
and copy this plane to the top and form a cube.
--
Xuerang Hu
...
[GiDlist] mesh help
Send by: Enrique Escolano Are you sure?. The grid number never must begin by 0 !! If you list the node from GiD, it show a number 0? How do you write the mesh for the analysis? (maybe is a bug of the *.bas template) Which version of GiD do you use (see help about)? (if you are using an old version is recommended to update to the last available beta version 7.7.7b or to the 8.0c release candidate) If the problem persists, send us a small sample, including the problemtype used for your application. Regards Enrique Escolano ----- Original Message ----- From: lu hu To: gidlist at gatxan.cimne.upc.es... [GiDlist] mesh help
Send by: lu hu Thanks to Enrique. The problem seems to be resulted from the *.bas template. 2006/3/29, Enrique Escolano <escolano at cimne.upc.edu>: > > Are you sure?. The grid number never must begin by 0 !! > If you list the node from GiD, it show a number 0? > > How do you write the mesh for the analysis? (maybe is a bug of the *.bas > template) > > Which version of GiD do you use (see help about)? > (if you are using an old version is recommended to update to the last > available beta version 7.7.7b or to the 8.0c release candidate) ... [GiDlist] Conditions symbols
Send by: Sofia Costa I GiD team. I have some questions to make. 1 - It's possible to have two symbols apllied to one node? For example, the node 1 have a translation along x and i attribute the symbol forca.geo. And have also a rotation along z, where i attribute the symbol moment1.geo. I need that this two symbols are represented. How can i do it? 2 - When i don't include a condition, for example load, in *.sim and i do Draw -> load, the assigned nodes/elements are assigned by this name, load. It's possible to appears instead of load the value introduce in one entry in the moment that i make the assign? 3 - When we do Draw -> Colors, in the legend appears the colors and the corresponding values of the conditions. It's possible to appears only one of the values of the several conditions? Could you give some help? Best regards. ... [GiDlist] Conditions symbols
Send by: Enrique Escolano About your questions: 1 - It's possible to have two symbols apllied to one node? For example, the node 1 have a translation along x and i attribute the symbol forca.geo. And have also a rotation along z, where i attribute the symbol moment1.geo. I need that this two symbols are represented. How can i do it? you can show different symbols for a condition depending or the value of some field, This is an example (extracted of the RamSeries problemtype) cond Point_Constraints 4 global strcmp(cond(2),"ON")==0 && strcmp(cond(3),"ON")==0 && strcmp(cond(4),"ON")!=0 && strcmp(cond(5),"ON")!=0 && strcmp(cond(6),"ON")!=0 && strcmp(cond(7),"ON")!=0 1 0 0 symbols/apoio.geo global (strcmp(cond(2),"ON")==0 || strcmp(cond(3),"ON")==0) && strcmp(cond(4),"ON")!=0 && strcmp(cond(5),"ON")!=0 && strcmp(cond(6),"ON")!=0 && strcmp(cond(7),"ON")!=0 strcmp(cond(2),"ON")==0 (strcmp(cond(1),"ON")==0)*(-1) 0 symbols/apoio-rodillo.geo global strcmp(cond(5),"ON")!=0 && strcmp(cond(6),"ON")!=0 && strcmp(cond(7),"ON")!=0 1 0 0 symbols/empotrament.geo global 1 1 0 0 symbols/apoio3d.geo You can see that depending of a conditional sentence (based on some field values) can select the icon If the sentence (in red) is true (not 0) then the next symbol will be used You can use some standard symbols included in /symbols, or create your own problemtype symbols (they are small .geo GiD models saved as ASCII project) Read GiD help->Customization about the .sim file format 2 - When i don't include a condition, for example load, in *.sim and i do Draw -> load, the assigned nodes/elements are assigned by this name, load. It's possible to appears instead of load the value introduce in one entry in the moment that i make the assign? ... [GiDlist] Conditions symbols
Send by: Sofia Costa Thanks Enrique I'm elucidated in relation to points 2 and 3. For the point 1 i will give you my case: cond Boundary_Conditions 3 global (cond(int,1)!=0 || cond(int,2)!=0 || cond(int,3)!=0) && (cond(int,4)==0 && cond(int,5)==0 && cond(int,6)==0) cond(int,1) cond(int,2) cond(int,3) simbolsforca.geo global (cond(int,4)!=0 || cond(int,5)!=0 || cond(int,6)!=0) && (cond(int,1)==0 && cond(int,2)==0 && cond(int,3)==0) cond(int,4) cond(int,5) cond(int,6) simbolsmoment1.geo global cond(int,1)!=0 || cond(int,2)!=0 || cond(int,3)!=0 || cond(int,4)!=0 || cond(int,5)!=0 || cond(int,6)!=0 1 0 0 simbolsdisc.geo I want that in the case of sentence in green instead of drawing the simbol dic.geo, it draws the two previous simbols. Something like this: cond Boundary_Conditions 2 global cond(int,1)!=0 || cond(int,2)!=0 || cond(int,3)!=0 cond(int,1) cond(int,2) cond(int,3) simbolsforca.geo global cond(int,4)!=0 || cond(int,5)!=0 || cond(int,6)!=0 cond(int,4) cond(int,5) cond(int,6) simbolsmoment1.geo If for example cond(int,1) and cond(int,5) are both true (diferent of zero), then it must draws the both simbols: forca.geo and moment.geo. This will be possible? Regards. Sofia ----- Original Message ----- From: Enrique Escolano To: ... [GiDlist] Conditions symbols
Send by: Enrique Escolano You can't associate two simbols, but you can create a new .geo symbol for this case (combining both in a single file 'forcemoment.geo') It's easy to create a new .geo symbol, you only need to create a model with GiD, save it as ASCII project and get the .geo file. Note: Your own symbol must be located inside your own problemtype, not inside the standard /symbols GiD directory. problemtypes<yourproblemtype>symbolsforcemoment.geo ----- Original Message ----- From: Sofia Costa To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, March 29, 2006 11:44 AM Subject: Re: [GiDlist] Conditions symbols Thanks Enrique I'm elucidated in relation to points 2 and 3. For the point 1 i will give you my case: cond Boundary_Conditions 3 global (cond(int,1)!=0 || cond(int,2)!=0 || cond(int,3)!=0) && (cond(int,4)==0 && cond(int,5)==0 && cond(int,6)==0) cond(int,1) cond(int,2) cond(int,3) simbolsforca.geo global (cond(int,4)!=0 || cond(int,5)!=0 || cond(int,6)!=0) && (cond(int,1)==0 && cond(int,2)==0 && cond(int,3)==0) cond(int,4) cond(int,5) cond(int,6) simbolsmoment1.geo global cond(int,1)!=0 || cond(int,2)!=0 || cond(int,3)!=0 || cond(int,4)!=0 || cond(int,5)!=0 || cond(int,6)!=0 1 0 0 simbolsdisc.geo I want that in the case of sentence in green instead of drawing the simbol dic.geo, it draws the two previous simbols. Something like this: cond Boundary_Conditions 2 global cond(int,1)!=0 || cond(int,2)!=0 || cond(int,3)!=0 cond(int,1) cond(int,2) cond(int,3) simbolsforca.geo global cond(int,4)!=0 || cond(int,5)!=0 || cond(int,6)!=0 cond(int,4) cond(int,5) cond(int,6) simbolsmoment1.geo If for example cond(int,1) and cond(int,5) are both true (diferent of zero), then it must draws the both simbols: forca.geo and moment.geo. This will be possible? Regards. Sofia ----- Original Message ----- From: Enrique Escolano To: ... [GiDlist] create geometry mdoel thorugh batch file
Send by: Khaled Obeidat Hello, I am trying to use batch file to write my structure which consists of points joined with lines into Gid compatible format. The problem is that most of the points are duplicated and GID is not connecting between these duplicated points. To illustrate more, my structure in its current format looks like this: 0 0 0, 0 1 0 % line#1 0 1 0 , 1 1 0 % line#2 1 1 0 , 1 0 0 % line#3 1 0 0 , 0 0 0 % line#4 And I am writeing the bcah file as follow ( please notice that the structures are not always easy as the above example and duplicate points are not easy to find ) escape escape escape escape geometry create point 0 0 0 0 1 0 escape escape escape escape escape geometry create line join 1 2 escape escape escape escape geometry create point 0 1 0 1 1 0 escape escape escape escape escape geometry create line join 1 2 escape escape escape escape geometry create point 1 1 0 1 0 0 escape escape escape escape escape geometry create line join 1 2 escape escape escape escape geometry create point 1 0 0 0 0 0 escape escape escape escape escape geometry create line join 1 2 I did some thing similar previously by wrting to ASCII project but at that time there was no help file for ASCII in English. Thank you Khaled Obeidat PhD Student Electroscience Lab The Ohio State University 1320 Kinnear Road Columbus, Ohio 43212 (614) 292.7981 x. 49284 ... [GiDlist] create geometry mdoel thorugh batch file
Send by: Enrique Escolano You can create all points by coordinates, duplicating all, and at the end collapse the model with a tolerance smaller that the minimum distance between points that you don't want to join. To avoid the question window about join two coincident points, can previously set the variable CreateAlwaysNewPoint to 1 utilities variables CreateAlwaysNewPoint 1 About the geo GiD ASCII format, you can see a small documentat (English or Spanish) at this course documentation (chapter 12): http://www.gidhome.com/2004/material_courses Regards Enrique Escolano ----- Original Message ----- From: "Khaled Obeidat" <... [GiDlist] Cross-sectional boundary in two surfaces
Send by: lqca tj Hi, Gid guys: Im using GID8.0. I import a GID surface mesh model into GID. The geometry model looks like a flat irregular hollow cylinder. What I need is the cross-sectional area at one specific distance from the end of the model. Then I think if I have the cross-sectional boundary coordinates, then I will get the area. I tried to create a surface and use surface Boolean op. but it only support 2D surface Boolean operation. Is there a way that I can get the cross-sectional boundary? Is there anyone has an idea? I really appreciate your kind help. Thanks a lot, Best, John _________________________________________________________________ Take charge with a pop-up guard built on patented Microsoft® SmartScreen Technology. ... [GiDlist] Cross-sectional boundary in two surfaces
Send by: Enrique Escolano You need to create the intersection between a cutting surface and your "cylinder" Geometry->Edit->Intersection->Surface->Surface (or multiple surface), but this operation is not available for "surf-meshes" You can try some trick: 1- Import the original mesh (an STL or a GiD mesh) as mesh, not as surfmesh mesh. 2- Export this mesh with the template DXFSAP2000, to save each triangle as a surface 3- Import this auxiliry DXF file to have a geometrical surface by triangle. 4- Use intersection Multiple surfaces to have the required cut. Enrique ----- Original Message ----- From: "lqca tj" <lqca_2004 at hotmail.com... [GiDlist] GiD version 8.0c
Send by: CASARES MALDONADO ALEJANDRO Buenas tardes. ¿SI el password de la versión 7 ya no es válido en la 8.xx, cuál es el procedimiento para conseguir un nuevo password (soy usuario del GID desde hace 4 años). ¿Cuál es el costo de la actualización?. Asimismo, ya que es liberado por procesador, ¿cómo debo hacer para poder reinstalar mi versión en una máquina más moderna? (No he cambiado de máquina sólo por no saber cómo trasladar el GID a otra). Atentos saludos, Alejandro Casares M. > ---------- > From: gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] GiD version 8.0c
Send by: Enrique Escolano Hola Alejandro, En este momento para la version 8.0c (Release Candidate) solo pueden obtenerse passwords de prueba de un mes. Cuando esté disponible la version 8.0 release oficial publicaremos los precios en la web. Inicialmente por ejemplo la actualización via internet de la versión 7 a la 8 valdrá 139 euros para organizaciones educativas, y 395 euros para el resto. Acerca del traslado de licencia de un ordenador a otro, en principio la licencia normal es para un ordenador concreto, y no puede moverse a otro, pero usualmente si a un usuario se le estropea la máquina o se cambia a otra más moderna, contactando con nosotros le proporcionamos otro password. Para la versión 8 también estará disponible la licencia para un "memory stick USB". De este modo se puede usar GiD en distintas máquinas (en la que esté conectada la memoria). Las máquinas pueden tener incluso distinto sistema operativo Windows/Linux. (esta licencia "movil" es algo más cara que la normal) Saludos Enrique Escolano ----- Original Message ----- From: "CASARES MALDONADO ALEJANDRO" <... [GiDlist] paso de post a pre
Send by: Ramon Ribó Hola, He visto que al pasar de post a pre ya no pide configuración. Por una parte es mucho más cómodo, pero por otra parte puede ser un problema grave para quien se ha pasado mucho tiempo creando streamlines o cortes o iso-superficies. ¿Habeis pensado que hacer en estos casos? Evidentemente, si el programa guardara esta información y estuviera allí en caso de volver inmediatamente al post, la solución me parecería perfecta. Si no es así, ya no lo veo tan claro. De hecho la solución óptima sería que el post guardara todos estos datos con el modelo simplemente presionando un botón. Entonces, el mensaje al salir sería: ¿Quiere usted guardar información de cortes, etc.? Dicho mensaje sólo aparecería en caso de que haya algo que guardar. Un saludo, -- Compass Ing. y Sistemas Dr. Ramon Ribo ... [GiDlist] paso de post a pre
Send by: Enrique Escolano Creo que de momento podemos conformarnos con que si hay cambios hechos por el usuario en post salga un mensaje avisando de que se perderán y pidiendo confirmación, y si no hay nada (cortes, graficas, streamlines, etc) que no pregunte nada. Tambien me parece evidente que en el futuro debe guardarse completamente el estado de post. Enrique ----- Original Message ----- From: "Ramon Ribó" <ramsan at compassis.com> To: "GiD users mailing list" <gidlist at gatxan.cimne.upc.es... [GiDlist] paso de post a pre
Send by: Miguel Pasenau A mi también me parece muy bien que se guarde todo el estado. Además hoy es un día soleado y bonito. La temperatura es agradable y apetece ir a la playa. ¿alguien se apunta? -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Enrique Escolano Enviado el: martes, 04 de abril de 2006 19:43 Para: gidlist at gatxan.cimne.upc.edu... [GiDlist] paso de post a pre
Send by: Ramon Ribó Miquel, El pre ho guarda tot des de fa anys sense cap problema, el post podria fer igual. De fet, les funcions per guardar ja les tens implementadas. És un pur problema de afegir un botó que cridi a aquestes funcions guardant la informació dins del .gid En qualsevol cas, és més tema de la 8.1 que de la 8.0 Ara per ara, la solució del Kike sembla la adequada. -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Tuset, 8 7-2 tel. +34 93 218 19 89 08006 Barcelona, Spain fax. +34 93 396 97 46 En Wed, 05 Apr 2006 10:11:01 +0200, Miguel Pasenau <... [GiDlist] paso de post a pre
Send by: Miguel Pasenau Ramon, dues coses: 1. no crec que la gidlist sigui el lloc adequat per a discutir aquests temes, i menys en català (ull, que potser estic equivocat) 2. no estan implementades totes les funcions, només n'hi ha algunes. Falten, per exemple, les propietats de les malles: colors, estil, transparències, si estan enceses o no, informació de quina es la visualització actual i les seves propietats, les streamlines, els talls esfèrics, etc. -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] paso de post a pre
Send by: Ramon Ribó Per cert, què són els talls esfèrics? I per què no creus adequada la llista per discutir aquests temes? Tota la informació que haguem escrit ens podrà ser útil en el futur de cara a millorar GiD. -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Tuset, 8 7-2 tel. +34 93 218 19 89 08006 Barcelona, Spain fax. +34 93 396 97 46 En Wed, 05 Apr 2006 13:01:21 +0200, Miguel Pasenau <miguel at cimne.upc.edu... [GiDlist] paso de post a pre
Send by: Miguel Pasenau Ja ho hem aclarit per telèfon. Tocava que estès a la gidteam. Gid et permet definir un casquet esfèric que talla el model i a on pots dibuixar resultats. Si talles un volum, tindràs un casquet esfèric, si talles un pla tindràs un cercle: http://www.gidhome.com/support/whatsnew8/News/sld63.htm -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] paso de post a pre
Send by: Ramon Ribó Me parece bien. -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Tuset, 8 7-2 tel. +34 93 218 19 89 08006 Barcelona, Spain fax. +34 93 396 97 46 En Tue, 04 Apr 2006 19:43:00 +0200, Enrique Escolano <escolano at cimne.upc.edu> escribió: > Creo que de momento podemos conformarnos con que si hay cambios hechos > por > el usuario en post ... [GiDlist] paso de post a pre
Send by: Miguel Pasenau Vuelto atrás. -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Ramon Ribó Enviado el: miércoles, 05 de abril de 2006 10:16 Para: gidlist at gatxan.cimne.upc.edu Asunto: Re: [GiDlist] paso de post a pre Me parece bien. -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com... [GiDlist] Email messages by error
Send by: Ramon Ribó Hello, We have been sending by mistake some messages to the list that are not relevant to the GiD list interests. You can safely not consider them. Best regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Tuset, 8 7-2 tel. +34 93 218 19 89 08006 Barcelona, Spain fax. +34 93 396 97 46 [GiDlist] Dos dudas a resolver, gracias
Send by: Juan Carlos Monroy Estimados Amigos: Soy Juan Carlos Monroy, becario del Cimne, que trabajo con interfaces antiguas en el entorno de Gid. Para la Gid 7.2 me han dado una interface stampack520.gid que despliega correctamente los menus una vez elegida. La asignación de características se efectúa bien, aunque algunas veces, gráficamente lento. Aquí nos surge el primer problema: - Cuando tenemos muchos nodos de la chapa deformable, al escribir los ocho nodos de los hexaedros, salen escritos fuera de los márgenes de los ochenta caracteres. Necesitamos comprimir su escritura eliminando algunos espacios en blanco y, de momento, lo hacemos manualmente. Este error nos lo provoca en ELM_TYPE: SOLID y CONCENTRATED_MASS_CONDITION Nuestro segundo escollo importante es el siguiente: - Al cargar la interface stampack520 , ésta pide un archivo ".spd" que no lo tiene; de forma que deja colgado el GID. Muchas gracias de antemano. _________________________________________ Juan Carlos Monroy ... [GiDlist] Dos dudas a resolver, gracias
Send by: Enrique Escolano Hola Juan Carlos, Me temo que la interface que te han dado es demasiado antigua, la he estado mirando un poco y no está preparada para un GiD minimamente moderno, especialmente porque los menus han cambiado bastante, y este problemtype modifica mucho dichos menus y lo hace mal, o por ejemplo el error que comentas del .spd Mi opinión es que no vale la pena invertir tiempo en modernizar esta versión obsoleta. Para salir del paso, se puede utilizar la interface a nivel básico, eliminando todo el código tcl, para ello basta con renombrar el fichero stampack520.tcl para que GiD no lo encuentre. De este modo ya no te saldrá el error del spd. Sin código tcl se siguen cargando las definiciones de los ficheros de configuración básica: .cnd, .prb, .mat, .sym, .bas, .bat Para modificar la escritura de los hexahedros, puedes modificar el fichero de plantilla stampack520.bas Por ejemplo, en vez de *elemsConec que escribe todas las conectividades del elemento (8 en este caso de hexaedro) puede escribirlas una a una dandole el indice *Loopvar(elems)*elemsmat()*elemsConec *Loopvar(elems)*elemsmat() *elemsConec(1) *elemsConec(2) *elemsConec(3) *elemsConec(4) * *elemsConec(5) *elemsConec(6) *elemsConec(7) *elemsConec(8) ----- Original Message ----- From: "Juan Carlos Monroy" <... [GiDlist] Meshing volumes
Send by: Hannelore Derluyn Hello, I am making a mesh of a cotton fabric and when I want to mesh the volumes, I always get the following Mesherrors (but meshing the surfaces gives no problems): - failed entering octtree - error creating face - contour element X is not correct Has anyone an idea what the reason of those kind of problems is and how it can be solved? Could it be a problem that the volumes have one point in common. The measurements of the fabric are also very small, (0.00023 m thickness) could this be a problem? Thank you! [GiDlist] Meshing volumes
Send by: Enrique Escolano The problem is that some volume surfaces are very close, and there is no space between them to fill with tetrahedra In fact, there is some parte where this surfaces are more than tangents, are intersecting !! (like the pink part crossing the blue part) You must to modify the geometric model in order to avoid this zero or near zero thickness parts. (splitting surfaces to share some parts) Also the scale of your model is a little small (all coordinates near 1e-4) , it's better to scale the model to be near 1 (to decrease numerical errors, and problems with some tolerances I attach your model reconstructing curves, and surfaces. I generated a volume mesh (maybe with other sizes you will habe problems near the quasi-tangent parts) I attach the modified model, including mesh, scaled x 1.0e5. Regards Enrique Escolano ----- Original Message ----- From: "Hannelore Derluyn" <... [GiDlist] List entities and save it.
Send by: Fernanda Caffaratti Hola a todos: Les escribo para hacerle una consulta sobre listar entidades desde un problem type, mediante la utilización de instrucciones tcl-tk y comandos propios de GiD. Mi consulta es la siguiente. Al seleccionar mi problem type, necesito "listar" las entidades definidas en una geometria determinada (que actualmente esta en pantalla de GiD) y de acuerdo a las entidades seleccionadas por el usuario, realizar diferentes acciones. Se que Gid dispone en el menú Utilities/List, la posibilidad de proporcionar informacion de las entidades previamente seleccionadas. Estuve leyendo algunos archivos tcl en la carpeta scripts, como ListEntities.tcl, donde se define la ventana que aparece al seleccionar la opcion del menu, y otros comandos más. Dentro de mi archivo tcl escribo lo siguiente: set ent "Lines" .central.s process SelectEntities $ent Con esta instrucción, en la barra inferior donde se registra las acciones realizadas (sobre la barra de comandos), me aparece la siguiente informacion: "Enter Lines to assign to list" De esta manera selecciono las lineas de interés. Me indica que agrega cada una, y al presionar ESC, me indica la cantidad de lineas (en este caso) han sido listadas o seleccionadas. Ahora mi pregunta es: como puedo almacenar dichos números de líneas en alguna variable (ej: líneas 1,2,5,8) , y de esta manera poder acceder a dicha informacion para posteriormente realizar algun tipo de actividad como devovler informacion que me interesa u otra cosa. Bueno, espero recibir alguna sugerencia y desde ya muchas gracias. Saludos Fernanda __________________________________________________ Correo Yahoo! Espacio para todos tus mensajes, antivirus y antispam ¡gratis! ¡Abrí tu cuenta ya! - ... [GiDlist] List entities and save it.
Send by: Enrique Escolano Para la selección de entidades desde Tcl, puedes usar el comando
GidUtils::PickEntities (está implementado en el fichero scritps/dev_kit.tcl)
proc GidUtils::PickEntities { type selectmode }
# It returns the enties identifier numbers (for example 1 3 5:8 represents 1 3 5 6 7 8)
# type can be "Points" "Lines" "Surfaces" "Volumes" "Dimensions" "AllTypes" "Nodes" or "Elements"
# selectmode can be "single" or "multiple"
# for AllTypes selection returns some as
# Points 19 23 Lines 28:29 32:33 37 Surfaces 1 6 21:22 Volumes 1 Dimension 1:2
# or for mesh entities some as Nodes 236 244 Elements 4122 4130 4152 4165
por ejemplo, prueba esto:
WarnWinText [GidUtils::PickEntities Lines multiple]
Una vez conocidos los identificadores de las entidades, puedes obtener más información mediante algún comando GiD_Info
Puede que tambien te interese en ocasiones obtener una coordenada de un punto existente o no, para ello puedes usar
GidUtils::GetCoordinates
Saludos
Enrique Escolano
----- Original Message -----
From: Fernanda Caffaratti
To: ...
[GiDlist] splitting_elements
Send by: Thanasis Makrodimopoulos Hi, 1) When I am spliting the elements (triangle->triangle, GiD8RC) I notice that the conditions are either lost or transferred elsewere. (see pictures attached) 2) I would also like to ask if it is possible to split elements based on a background mesh. Regards, Thanasis -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060419/e2482be6/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: initial_mesh.jpg Type: application/octet-stream Size: 27032 bytes Desc: not available Url : ... [GiDlist] splitting_elements
Send by: Enrique Escolano Dear Sir, We corrected this bug when splitting triangles with conditions over face element. This second Release Candidate (available now for download) include several corrections like this. About the other question, now It's not possible to split elements based on a background mesh, but you can use the standar selection mechanism, using some filter to select only some triangles (big triangles, or bad shaped, etc). Maybe we can add this feature for future versions. Thanks for your bug report Best regards Enrique Escolano ----- Original Message ----- From: Thanasis Makrodimopoulos To: gidlist at gatxan.cimne.upc.es... [GiDlist] GiD version 8.0c
Send by: Amancherla, Sundar (GE, Research) Best Regards, -- Aman MRL, *(901)-2491 -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu]On Behalf Of Enrique Escolano Sent: Tuesday, March 28, 2006 3:06 AM To: gidlist at gatxan.cimne.upc.edu Subject: Re: [GiDlist] GiD version 8.0c You are right, the 7.7.7b will be the last 7.x beta. 8.0c is really very similar to 7.7.7 (is only from a month ago), but has a lot of differences with the official 7.2 version (released more than tree years ago), and it require a new licence system. Now all beta versions for a long time will be 8.x, and it will be possible to use them with the 8 password. At this moment (until official 8.0 version will be released) only can get temporary trial passwords for this 8.0c version. You can see what's new from 7.2 to 8.0c at ... [GiDlist] time inetgration file
Send by: devvrath khatri Warning: This message has had one or more attachments removed. Warning: Please read the "VirusWarning.txt" attachment(s) for more information. Sir , I have to do animation , for that i am storing the results in the following format the columen 1 corrspond to node no. the columen 2 corrspond to result at time 1 the columen 3 corrspond to result at time 2 the columen 4 corrspond to result at time 3 but on running postprocess it says , "EOF read too early" what is the error and what is the correct format for giving animation " ResultGroup "EETA" 1 OnNodes ResultDescription "Data" Scalar ResultRangesTable "My Table" ComponentNames "eeta1" Values 1 0 -0.000008 -0.000028 2 0 0 0 3 0 -0.000008 -0.000028 4 0 0 0 5 0 -0.000004 -0.000003 6 0 -0.000008 -0.000028 7 0 0 0 8 0 0 0 9 0 0 0 10 0 -0.000008 -0.000028 11 0 0 0 12 0 0.000002 0 13 0 0 0 14 0 0 0 15 0 0.000001 0.000002 16 0 -0.000008 -0.000028 17 0 0 0 18 0 0 0 19 0 -0.000004 -0.000003 20 0 0 0 " -- Devvrath Khatri Final year, B. Tech Department of Ocean Engineering Indian Institute of Technology Madras Chennai India -------------- next part -------------- This is a message from the MailScanner E-Mail Virus Protection Service ---------------------------------------------------------------------- The original e-mail attachment "grid10.post.res" is on the list of unacceptable attachments for this site and has been replaced by this warning message. If you wish to receive a copy of the original attachment, please e-mail helpdesk and include the whole of this message in your request. Alternatively, you can call them, with the contents of this message to hand when you call. At Fri Apr 21 11:23:48 2006 the virus scanner said: Attempt to hide real filename extension in grid10.post.res Note to Help Desk: Look on the MailScanner in /var/spool/mailscanner/quarantine (message k3L9NI3u005824). -- Postmaster ... [GiDlist] time inetgration file
Send by: Miguel Pasenau Hello, 'ResultGroup's should be used to group results of the same analysis/time step into a block, as specified at: http://www.gidhome.com/support/gidbeta/gid_17.subst#SEC289 So, it is not possible to use it as you are doing it: you can not group results from different time steps in one 'ResultGroup'. In your case you have to write a separate 'Result' block for each time step: Result "Data" "EETA" 1 Scalar OnNodes Values 1 0 (...) 20 0 End values Result "Data" "EETA" 2 Scalar OnNodes Values 1 -0.000008 (...) 20 0 End values Result "Data" "EETA" 3 Scalar OnNodes Values 1 -0.000028 (...) 20 0 End values And so on. Miguel -----Mensaje original----- De: ... [GiDlist] Postprocess
Send by: pablo p del castillo Hello; I have a mesh with triangles and quadrilaterals elements and i would like to postprocess the results at the same time, exactly, i have a scalar on gauss points, so Gid give me results for quad elements or for triangle elements, is it possible to see the results at the same time?? (i am using the gidpost library) Thanks Pablo --------------------------------- LLama Gratis a cualquier PC del Mundo. Llamadas a fijos y móviles desde 1 céntimo por minuto. http://es.voice.yahoo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Postprocess
Send by: Miguel Pasenau In the Windows->Several results window, under the result view label, you should select the one over another option. Then you can do a c.fill for the Gaussian results over the triangles, and afterwards the c.fill for the Gaussian results over the quadrilaterals and youll get both results visualization at once, i.e. youll see the results for both element types. miguel _____ De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] Postprocess
Send by: Julio García Dear Pablo, I would suggest you not to write the results on Gauss points, but calculate an equivalent result on nodes. This way it will be possible to see all the result. Regards, Julio ____________________________________ Julio García Espinosa COMPASS Ingeniería y Sistemas S.A. C/ Tuset 8, 7º 2ª Barcelona 08006 http://www.compassis.com T: (+34) 93.218.19.89 F: (+34) 93.396.97.46 E: julio at compassis.com ________________________________ De: gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] Postprocess
Send by: Miguel Pasenau Se pueden sobreponer los contour fills de resultados en puntos de gauss activando el 'windows->several results' miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Julio García Enviado el: jueves, 01 de junio de 2006 11:54 Para: gidlist at gatxan.cimne.upc.edu Asunto: RE: [GiDlist] Postprocess Dear Pablo, I would suggest you not to write the results on Gauss points, but calculate an equivalent result on nodes. This way it will be possible to see all the result. Regards, Julio ____________________________________ Julio García Espinosa COMPASS Ingeniería y Sistemas S.A. C/ Tuset 8, 7º 2ª Barcelona 08006 ... [GiDlist] Remote Processing
Send by: Ammar T. Al-Sayegh Hi All, I need to create models with GiD on my local computer to be analyzed on a remote server. I understand that there is a calculate remote option, but it can only be used with ProcServer at this time. Is there a way to customize this function so it can be used with another server? If changing the above option is not possible, then is it possible to read/save files in GiD from a remote source through FTP or SSH? Thank you. -ammar [GiDlist] Remote Processing
Send by: Enrique Escolano Dear sir, In order to calculate in a remote machine without ProcServer, you must to save the calculation file (Files->Export->Calculation file) Then send this file or files by ftp to the remote machine where the problemtype (the solver) is also installed, and from a console (telnet, vnc, ssh) start the <problemtype>.bat file with the appropiated arguments 1st argument: project_name (name of the current project) 2nd argument: c:acproject_name.gid (path of the current project) 3rd argument: c:acproblem_type_name.gid (path of the problem type selected) When the process finish you mush download all results files to the local machine in order to be postprocessed with GiD ProcServer manage this king of operations, with a direct dialog with GiD, but now it's use is not public. Best regards Enrique Escolano ----- Original Message ----- From: "Ammar T. Al-Sayegh" <... [GiDlist] Removal of intersecting volumes
Send by: Amancherla, Sundar (GE, Research) Dear all, I am meshing a 3D voronoi tessellation using GiD. If I try to introduce some spheres in already existing volumes (existing tesselation), the total volume shows as voronoi_tessellation+spheres = NOT TRUE. This is happenning since I am not removing the tessellation volumes and surfaces that are intersecting with the newly added spheres... Is there a way to remove the intersecting portions of original volumes and surfaces. Thanks very much in advance for your help. Aman [GiDlist] GiD 8.0Rc
Send by: vijayendra.munikoti at power.alstom.com Hallo, I have downloaded GiD 8.0Rc and evaluating. I have the following problems: 1) I am not able to export the GiD drawing to IGES/DXF or any other format. The program exits with an error message. 2) After pre-processing the data and running FEM program, pressing the post-processing button works to visualize the data. But after post-processing if I press the pre-processing button, GiD exits with an error message. Could you help? With regards Vijayendra -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060503/bcd5f79e/attachment.htm... [GiDlist] GiD 8.0Rc
Send by: Miguel Pasenau Hi, ¿can you send us an example of both points? thanks miguel _____ De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de vijayendra.munikoti at power.alstom.com Enviado el: miércoles, 03 de mayo de 2006 15:10 Para: gidlist at gatxan.cimne.upc.es Asunto: [GiDlist] GiD 8.0Rc Hallo, I have downloaded GiD 8.0Rc and evaluating. I have the following problems: 1) I am not able to export the GiD drawing to IGES/DXF or any other format. The program exits with an error message. 2) After pre-processing the data and running FEM program, pressing the post-processing button works to visualize the data. But after post-processing if I press the pre-processing button, GiD exits with an error message. Could you help? With regards Vijayendra -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Crack Problem
Send by: Willy S Hi Can we use GiD for the crack problem??? --------------------------------- New Yahoo! Messenger with Voice. Call regular phones from your PC and save big. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060504/801b6902/attachment.htm [GiDlist] Crack Problem
Send by: Enrique Escolano What are your required features for "the crack problem"? Maybe some tasks can be solved by an analysis code, and others must be implemented inside GiD. Enrique ----- Original Message ----- From: Willy S To: gidlist at gatxan.cimne.upc.edu Sent: Thursday, May 04, 2006 6:08 AM Subject: [GiDlist] Crack Problem Hi Can we use GiD for the crack problem??? ------------------------------------------------------------------------------ New Yahoo! Messenger with Voice. Call regular phones from your PC and save big. -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] GiD 8.0Rc
Send by: vijayendra.munikoti at power.alstom.com Hallo
Thanks for the mail. Concerning the two points I had posted:
1) You can take ANY GiD generated drawing and export it as IGES/DXF. The
GiD gets terminated with an error message:
"The command "0x0068f8fa" referrs to memory "0x00000038". The
command "read" could not be executed"
2) You can open any GiD project and press post.-processing button. It
reads "..post.res" data. If you visualize/animate the data,
and THEN press pre-processing button, the "post-processing" menu does
not change at all.
Further, in post-processing menu, AFTER visualization, if you want to
change, for example number of contour colors or any other menu, nothing
happens, you have to literally close Gid and restart to set any menu item.
I have used previous GiD versions, so I think, that in this version there
is some bug.
Thanks
Vijayendra
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] Volume Properties
Send by: Amancherla, Sundar (GE, Research) Hello all - I am trying to view voronoi tessellation with about 100 volumes using GiD 7.2 verion. I have defined material parameters for all the volumes. However I am able to display the first 14 with different colors. The rest are displayed as green. Can I change some setting to view all the volumes in different colors? TIA for all the suggestions... -- Aman [GiDlist] Volume Properties
Send by: Enrique Escolano It' not possible to change this setting. Maybe you can use another trick, like create a new layer for each volume. Enrique ----- Original Message ----- From: "Amancherla, Sundar (GE, Research)" <Sundar.Amancherla at geind.ge.com> To: <gidlist at gatxan.cimne.upc.edu> Sent: Wednesday, May 03, 2006 6:19 PM Subject: [GiDlist] Volume Properties > Hello all - > > I am trying to view voronoi tessellation with about 100 volumes using GiD 7.2 verion. I have defined material parameters for all the volumes. However I am able to display the first 14 with different colors. The rest are displayed as green. >... [GiDlist] windows XP & animation problem
Send by: Mark Smith GiD 7.7.7b & XP pro has anyone else experienced problems of not being able to animate on XP pro & gid7.7.7b, the animate window is completely greyed out & reports an error reading play.png? no problems under windows 2000 sp2. N.B. no difference found with either software or hardware openGL acceleration enabled regards mark [GiDlist] windows XP & animation problem
Send by: Enrique Escolano It is a corrected bug, in some cases the img package was not loaded to be able to read .png images, It's corrected for 8.x versions, but I'm not sure about how to correct it in the 7.7.7b version, maybe you can solve it, by simply adding to the tclfile-opengl.tcl a line like this: package require img to force to load this library Enrique ----- Original Message ----- From: "Mark Smith" <mark.smith at linx.co.uk> To: "Gidlist (E-mail)" <gidlist at gatxan.cimne.upc.es> Sent: Friday, May 05, 2006 3:07 PM Subject: [GiDlist] windows XP & animation problem >... [GiDlist] Crack Problem
Send by: Bob Adey Hi An GID interface is under development for BEASY which can be used for fracture mechanics and crack growth analysis. More info at www.beasy.com Best regards Bob ________________________________ From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] On Behalf Of Willy S Sent: 04 May 2006 05:09 To: gidlist at gatxan.cimne.upc.edu Subject: [SPAM] - [GiDlist] Crack Problem - Email found in subject Hi Can we use GiD for the crack problem??? ________________________________ New Yahoo! Messenger with Voice. Call regular phones from your PC <... [GiDlist] Removal of Intersecting volumes and/or surfaces
Send by: Amancherla, Sundar (GE, Research) Hi All - * If two volumes are intersecting, is there a way to remove the common portion? * If a surface is intersecting a newly added volume, is there a way to remove the part of the intersecting surface? * Can I do these using batch file? Thanks very much in advance for any suggestions. Best Regards, -- Aman [GiDlist] Removal of Intersecting volumes and/or surfaces
Send by: Amancherla, Sundar (GE, Research) Hello all - I am attaching a batch file which produces a voronoi tessellation with 10 volumes and 3 spherical objects. Is there a way to remove the volumes from voronoi tessellation that the spherical particle is occupying. Since the cube edge is 1, the total volume should be 1. The total volume in this case becomes greater than 1. TIA Best Regards, -- Aman -------------- next part -------------- A non-text attachment was scrubbed... Name: 10grainp03.bch Type: application/octet-stream Size: 11819 bytes Desc: 10grainp03.bch Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060516/10a0f05c/attachment.obj... [GiDlist] Removal of Intersecting volumes and/or surfaces
Send by: Enrique Escolano Hello, Your spheres are intesecting other volume boundaries, then it's necessary to create all intersections between surfaces. and create the volumes with the new boundaries. If you only have two volumes, can try to use the volume boolean operations to substract the sphere to the other volume. Geometry->Edit->Volume boolean operation->Substract But this operation is not available for to substact a group of volumes (your spheres) from another group of volumes. If a volume is completelly inside other volume, can convert in a hole of this other volume with Geometry->Create->Volume->Hole (this operation is faster and more stable than boolean operations because it's not necessary to calculate intersections) Regards Enrique Escolano ----- Original Message ----- From: "Amancherla, Sundar (GE, Research)" <... [GiDlist] windows XP & animation problem
Send by: Mark Smith Hi Enrique, Thank you for the suggestion, it did not quite work but pointed me in the right direction. The following solved the problem, add the following line to the file tclfile-opengl.tcl package require img::png Best regards mark -----Original Message----- From: Enrique Escolano [mailto:escolano at cimne.upc.edu] Sent: 05 May 2006 20:13 To: gidlist at gatxan.cimne.upc.edu Subject: Re: [GiDlist] windows XP & animation problem It is a corrected bug, in some cases the img package was not loaded to be able to read .png images, It's corrected for 8.x versions, but I'm not sure about how to correct it in the 7.7.7b version, maybe you can solve it, by simply adding to the tclfile-opengl.tcl a line like this: package require img to force to load this library Enrique ----- Original Message ----- From: "Mark Smith" <... [GiDlist] Parametric surfaces
Send by: Alexander MacLennan Hi, I am trying to generate an ellipsoid using the following function in GiD under Geometry->Create->Parametric Surfaces X(u,v) = 2*sin(u)*cos(v) Y(u,v) = sin(u)*sin(v) Z(u,v) = 2*cos(u) Where u in [ 0, pi ] v in [ 0, 2*pi ] With number of points U 10 number of points V 15 as one surface I can't get a solid, enclosed surface of an ellipsoid, just a partial one with holes in the end Can anyone tell me how to do this correctly? Thanks Alex -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060517/fdc3e5db/attachment.htm... [GiDlist] Parametric surfaces
Send by: Enrique Escolano The parametric surface tool create an approximated interpolated surface, and there is some problem with degenerated curves.
I recommend you to create only half ellipse, and revolve it to create the elllipsoid
1- create half ellipse: You can use the "parametric line tool" (it creates only an interpolated line, but the interpolation can be very close to the mathematical shape)
create the curve v=constant =pi/2 , with parameter u from -pi/2 to pi/2
x(t)=2*sin(t)*cos(1.570796327)
y(t)=sin(t)*sin(1.570796327)
z(t)=2*cos(t)
t= -1.570796327 to 1.570796327
2 - create the surface by revolution with extrusion: Utilities->Copy ,
Entities: lines
Transformation: rotation
Angle: 180 º
Axe points: the ends of the curve to revolve
Do extrude: surface
Multiples copies: 2
Note 1: This revolution is not an approximation, is matematically exact
Note 2: in order to be meshed it's better to create two surfaces (2 copies of 180º) instead a single one (1 copy of 360º)
You can also obtain a matematically exact ellipsoid creating an sphere with radius=2, and then apply an scale transformation (Utilities->Move) with factors ex=ez=1.0 , ey=0.5
Best regards
Enrique Escolano
----- Original Message -----
From: Alexander MacLennan
To: ...
[GiDlist] Parametric surfaces
Send by: Alexander MacLennan I chose to use your third option, far simpler than the others :) It works perfectly, thank you very much for your help! On 5/18/06, Enrique Escolano <escolano at cimne.upc.edu> wrote: > > The parametric surface tool create an approximated interpolated surface, > and there is some problem with degenerated curves. > > I recommend you to create only half ellipse, and revolve it to create the > elllipsoid > > 1- create half ellipse: You can use the "parametric line tool" (it creates >... [GiDlist] Problemas con "read batch"
Send by: Juan Carlos Monroy Estimad at s amig at s; hoy he ido a hacer un "read batch window" con la versión GiD 7.7.7b y me ha dado el error que muestra la imagen. ¿Podéis ayudarme? Muchas gracias de antemano ______________________________ Juan Carlos Monroy -------------- next part -------------- A non-text attachment was scrubbed... Name: error.jpg Type: image/jpeg Size: 42870 bytes Desc: not available Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060525/3a028033/attachment.jpg... [GiDlist] Problemas con "read batch"
Send by: Mark Smith See attached for solution regards mark -----Original Message----- From: Juan Carlos Monroy [mailto:jcarlos at cimne.upc.edu] Sent: 25 May 2006 16:20 To: 'GiD users mailing list' Subject: [GiDlist] Problemas con "read batch" Estimad at s amig at s; hoy he ido a hacer un "read batch window" con la versión GiD 7.7.7b y me ha dado el error que muestra la imagen. ¿Podéis ayudarme? Muchas gracias de antemano ______________________________ Juan Carlos Monroy -------------- next part -------------- An embedded message was scrubbed... From: Mark Smith <... [GiDlist] import a dxf file
Send by: Isabel Gil Hello to everybody, My problem is the following one: I must import a .dxf file that has been created by another person. When I try to import it, I obtain the following error message: "ENTITIES section not found". The geometry has been defined in that file and, using GID, I would like to create its mesh. I have opened the .dxf file to know what there is and I have seen: ENTITIES 0 Any advice about what I can do to solve this problem? Thanks in advance Isa [GiDlist] import a dxf file
Send by: Miguel Pasenau Hi, ¿Which version of GiD are you using? ¿Can you send us the example? If the list is too public for you, you can send it to escolano at cimne dot upc dot edu or miguel at cimne dot upc dot edu miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Isabel Gil Enviado el: viernes, 26 de mayo de 2006 9:07 Para: gidlist_emilio Asunto: [GiDlist] import a dxf file Hello to everybody, My problem is the following one: I must import a .dxf file that has been created by another person. When I try to import it, I obtain the following error message: "ENTITIES section not found". The geometry has been defined in that file and, using GID, I would like to create its mesh. I have opened the .dxf file to know what there is and I have seen: ENTITIES 0 Any advice about what I can do to solve this problem? Thanks in advance Isa _______________________________________________ GiDlist mailing list ... [GiDlist] import a dxf file
Send by: Isabel Gil Hi! I have tried using another version and now I can read the .dxf file without any problems. The previous version I was using was 6.1.2a. Thank-you Isa Miguel Pasenau wrote: >Hi, >¿Which version of GiD are you using? ¿Can you send us the example? If the >list is too public for you, you can send it to > >escolano at cimne dot upc dot edu > >or > >miguel at cimne dot upc dot edu > >miguel > >-----Mensaje original----- >De: gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] import a dxf file
Send by: Miguel Pasenau ¿Have you tried out latest version, the 8.0? http://www.gidhome.com/download/ miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Isabel Gil Enviado el: viernes, 26 de mayo de 2006 12:51 Para: gidlist at gatxan.cimne.upc.edu Asunto: Re: [GiDlist] import a dxf file Hi! I have tried using another version and now I can read the .dxf file without any problems. The previous version I was using was 6.1.2a. Thank-you Isa Miguel Pasenau wrote: >... [GiDlist] import a dxf file
Send by: Isabel Gil No, I would like to. By now, I have tried out the previous one, number 7.7.7b Miguel Pasenau wrote: >¿Have you tried out latest version, the 8.0? > >http://www.gidhome.com/download/ > >miguel > >-----Mensaje original----- >De: gidlist-admin at gatxan.cimne.upc.edu >[mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Isabel Gil >Enviado el: viernes, 26 de mayo de 2006 12:51 ... [GiDlist] GiD8_user_manual
Send by: Thanasis Makrodimopoulos Hello, I would like to ask if it is possible to download the GiD8 user manual. The link does not seem to work (this also happens to other colleagues). In fact I receive a message "the server received extended information" Regards Thanasis -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060528/c9eb6891/attachment.htm [GiDlist] GiD8_user_manual
Send by: Miguel Pasenau Hello, Sorry but it's still not available, we are finishing and reformatting it (and the web page shouldn't be there). But it will be available very soon. In the meantime you can access the on-line version at http://www.gidhome.com/support/gid_toc.subst . Best regards miguel _____ De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Thanasis Makrodimopoulos Enviado el: domingo, 28 de mayo de 2006 14:55 Para: gidlist Asunto: [GiDlist] GiD8_user_manual Hello, I would like to ask if it is possible to download the GiD8 user manual. The link does not seem to work (this also happens to other colleagues). In fact I receive a message "the server received extended information" Regards Thanasis -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Install and Feature questions
Send by: Atwood, Robert C Dear Gid List: I have just downloaded the gid8.0.1-dyn-64.tar.gz and installed on a SUSE-9.1 intel em64t machine. Note, I had to fix permissions on several files to be able to use it as a normal user. My question is: can I use gid to output the results of a time series , interpolated to a set of spatial points not necesarrily on nodes? Like the graph point evolution function but with a possibly large set of points. Or, can the results be directly interpolated from one mesh onto another? If not can anyone recommend a tool that does something like that ? Thanks Robert Atwood [GiDlist] Install and Feature questions
Send by: Ramon Ribó Hello, Our company, Compass Ingeniería y Sistemas, has developed a tool for interpolating data between two meshes. It can work both as a library for coupling two analysis programs and as a program to transfer calculated results from one mesh to another. We use it for meshes in the range of the hundreds to the few million elements. Up two now we have used it internally and with other partners in several common projects. We are considering now to convert into into a product and put it into the market. Contact us if you are interested in it. Regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com... [GiDlist] ATENA - GiD Interface
Send by: Sören Schwarz Hello, our Institute for Structural Concrete is working with the FE-Programm Atena now. Since we are using GiD as our standard pre- and postprocessor, it would be easy for us, if we could use GiD for Atena as well ... Cervenka consulting offers an interface to create Atena input files from GiD models, but no options for postprocessing the results. Since we are using GiD also with other programms, we would like to do the postprocessing with GiD as well. So we began to write a programm which transfers the Atena results in GiD flavia.msh and flavia.res files. My question: Has somebody already done programming for an Atena-GiD interface like this or is interested in sharing our programms? Thanks, Sören Schwarz ___________________________________________________ Universität Leipzig Wirtschaftswissenschaftliche Fakultät Institut für Massivbau und Baustofftechnologie Marschnerstrasse 31 04109 Leipzig ___________________________________________________ Dipl.-Ing. Sören Schwarz Tel.: 0341/97-33800 (Sekretariat) Tel.: 0341/97-33813 (Durchwahl) Fax: 0341/97-33809 e-mail: ... [GiDlist] ATENA - GiD Interface
Send by: Sören Schwarz Hello, our Institute for Structural Concrete is working with the FE-Programm Atena now. Since we are using GiD as our standard pre- and postprocessor, it would be easy for us, if we could use GiD for Atena as well ... Cervenka consulting offers an interface to create Atena input files from GiD models, but no options for postprocessing the results. Since we are using GiD also with other programms, we would like to do the postprocessing with GiD as well. So we began to write a programm which transfers the Atena results in GiD flavia.msh and flavia.res files. My question: Has somebody already done programming for an Atena-GiD interface like this or is interested in sharing our programms? Thanks, Sören Schwarz ... [GiDlist] ATENA - GiD Interface
Send by: Miguel Pasenau Hello, I didn't hear about anyone who has done some work on Atena-GiD, sorry. But for writing the postprocessing files ( '.post.msh' and '.post.res') you can also use the 'gidpost' library, which has an interface for fortran too. You can get it from here: http://www.gidhome.com/support/gidpost.subst miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] batch meshing
Send by: Alexander MacLennan Hi, I am trying to write some code to use GiD to mesh a directory full of IGES files. I can use the macro recorder, but dialogue boxes stay on the screen.. Is there another interface I can use? .. Can I call GiD functions from a standalone tcl/tk script or C/C++/Java code? cheers alex [GiDlist] Please ignore my previous post, I found the answer in the list
[GiDlist] numbering nodes and elements
Send by: rafadoig at hiroshima-u.ac.jp Hello everybody, does anyone know how to teach GiD-Pre the way of numbering nodes and elements? I would like to have following order for nodes and element: ascending from left to right, from bottom to top Thank you in advance for any hint Rafael [GiDlist] numbering nodes and elements
Send by: Enrique Escolano Hello, The elements are numbered following the creation order. The nodes are usually automatically renumbered after generate the mesh, in order to have a 'low halfband' (maximum difference between node numbers of each element) It's not possible to directly obtain your required oreder 'ascending from left to right, from bottom to top'. In fact, usually elements faces are not parallel to the coordinates axis. You can renumber the mesh inside your own code, or call an auxiliary procedure/program to do this. Regards Enrique Escolano ----- Original Message ----- From: <rafadoig at hiroshima-u.ac.jp... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Amancherla, Sundar (GE, Research) Hi - I have a quick question on the geometry. I have attached an example bch file for the voronoi tessellated cube with 10 volumes. If I want to view a slice in the cube (voronoi tessellation) passing through the centre and parallel to z-axis, is there a way to do so? Thanks very much for your help in advance. Aman -----Original Message----- From: Enrique Escolano [mailto:escolano at cimne.upc.edu] Sent: Thursday, May 18, 2006 4:21 PM To: Amancherla, Sundar (GE, Research) Subject: Re: NEED HELP WITH GEOMETRY About how to intersect volumes, you can read my answer to your last gidlist mail, but it will be very difficult to be automatized in a batch file. About to obtain a finer surface mesh and a coarser volume mesh. You can assign mesh sizes to geometrical entities. for example, assign small size to the lines and the surfaces, and use a general size bigger for the other parts. You can also modify the "meshing transition speed", from Utilities->Preferences: mehing - unstructured size transition (as faster the value faster the transition from small to big sizes) Regards Enrique ----- Original Message ----- From: "Amancherla, Sundar (GE, Research)" <... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Enrique Escolano You can create for example a circle surface with center the cube center, normal the z axis, and a radius a little bigger than the cube, and then intersect multiple surfaces, and split some of them if necessary I attach the GiD model with this auxiliary surface and all intersections Regards Enrique Escolano ----- Original Message ----- From: "Amancherla, Sundar (GE, Research)" <Sundar.Amancherla at geind.ge.com> To: <gidlist at gatxan.cimne.upc.edu>; "Enrique Escolano" <escolano at cimne.upc.edu... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Amancherla, Sundar (GE, Research) Thanks Enrique However I am not sure of the procedure. Could you please let me know the commands you have used and can I include this portion in batch file? TIA Aman -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu]On Behalf Of Enrique Escolano Sent: Tuesday, June 13, 2006 3:26 PM To: gidlist at gatxan.cimne.upc.edu Subject: Re: [GiDlist] RE: NEED HELP WITH GEOMETRY You can create for example a circle surface with center the cube center, normal the z axis, and a radius a little bigger than the cube, and then intersect multiple surfaces, and split some of them if necessary I attach the GiD model with this auxiliary surface and all intersections Regards Enrique Escolano ----- Original Message ----- From: "Amancherla, Sundar (GE, Research)" <... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Enrique Escolano 1) Create the auxiliar surface Geometry->Create->Object->Circle ... and select the center an normal to the plane 2) Calculate Intersections Geometry->Edit->Intersection->Multiple surfaces 3) Split the surfaces in two parts from the intersection curves Geometry->Edit->Divide surfaces->Split select the surface and the lines to split it It's easy to do interactivelly, but maybe some step is difficult to be automatized in a batch file Enrique ----- Original Message ----- From: "Amancherla, Sundar (GE, Research)" <Sundar.Amancherla at geind.ge.com... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Amancherla, Sundar (GE, Research) Thanks again Enrique. I want to visualize only the part of the cube (square slide in the centre) cut by the circle which would show the cut volumes as areas with black lines on the square slice. Is there a way to visualize it like this? Thanks very much for your help in advance Aman -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu]On Behalf Of Enrique Escolano Sent: Tuesday, June 13, 2006 6:38 PM To: gidlist at gatxan.cimne.upc.edu... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Enrique Escolano I don't understand well this question, but I think that you want to create the surfaces filling the intersection lines on the cutting plane. You can create each surface selecting its boundary lines. Geometry->Create->NurbsSurface->By Contour, or use this intersection lines to split the cutting surface in each part Geometry->Edit->Divide surfaces->Split ----- Original Message ----- From: "Amancherla, Sundar (GE, Research)" <Sundar.Amancherla at geind.ge.com> To: <gidlist at gatxan.cimne.upc.edu... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Amancherla, Sundar (GE, Research) Enrique - If I ask for the multiple intersections by selecting everything with the mouse, the process gets very very slow. It appears that it would get even slower if I have about 1000 volumes in the cube. Is there a way to speed up to do step 2? Thanks Aman -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu]On Behalf Of Enrique Escolano Sent: Tuesday, June 13, 2006 6:38 PM To: gidlist at gatxan.cimne.upc.edu... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Enrique Escolano Calculate this intersections ir really slow, because the try to intersect each surface with all other surfaces, and then the number of combination is very big. Maybe it's faster to find n times the intersection between only two surfaces: the cutting surface, and each other possible cutting surface ----- Original Message ----- From: "Amancherla, Sundar (GE, Research)" <Sundar.Amancherla at geind.ge.com> To: <gidlist at gatxan.cimne.upc.edu> Sent: Tuesday, June 13, 2006 3:48 PM Subject: RE: [GiDlist] RE: NEED HELP WITH GEOMETRY >... [GiDlist] parametric line
Send by: durthu at tiscali.it Hi everyone, I'm totally new at GID and I would like to know if there is a list of the mathematical function that can be used when creating a parametric line. Above all, I would like to know how to create a parabolic segment, since I couldn't find how to make gid accept t^2. Tkank you very much in advance, Alessio Brizzi. Naviga senza limiti con 4 Megabps di velocita' a soli 19,95 Euro al mese, ATTIVA SUBITO e hai 2 MESI GRATIS! In piu', se sei raggiunto dalla rete Tiscali, telefoni senza pagare il canone Telecom. Comincia subito a risparmiare! http://abbonati.tiscali.it/prodotti/adsl/tc/4flat/... [GiDlist] parametric line
Send by: durthu at tiscali.it Hi everyone, I'm totally new at GID and I would like to know if there is a list of the mathematical function that can be used when creating a parametric line. Above all, I would like to know how to create a parabolic segment, since I couldn't find how to make gid accept t^2. Tkank you very much in advance, Alessio Brizzi. Naviga senza limiti con 4 Megabps di velocita' a soli 19,95 Euro al mese, ATTIVA SUBITO e hai 2 MESI GRATIS! In piu', se sei raggiunto dalla rete Tiscali, telefoni senza pagare il canone Telecom. Comincia subito a risparmiare! http://abbonati.tiscali.it/prodotti/adsl/tc/4flat/... [GiDlist] parametric line
Send by: Enrique Escolano You can press the rigth mouse button over the equation field to show a little help with a list of this functions Are valid all this tcl funcions: + - * / % abs cosh log sqrt acos double log10 srand asin exp pow tan atan floor rand tanh atan2 fmod round ceil hypot sin cos int sinh. The function you wanted is pow(t,2) , or simply t*t Regards Enrique Escolano ----- Original Message ----- From: <durthu at tiscali.it> To: <gidlist at gatxan.cimne.upc.es> Sent: Tuesday, June 13, 2006 4:17 PM Subject: [GiDlist] parametric line >... R: [GiDlist] parametric line
Send by: Alessio Brizzi Thank you very much Enrique, now I can go on working! -----Messaggio originale----- Da: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] Per conto di Enrique Escolano Inviato: martedì 13 giugno 2006 19.46 A: gidlist at gatxan.cimne.upc.edu Oggetto: Re: [GiDlist] parametric line You can press the rigth mouse button over the equation field to show a little help with a list of this functions Are valid all this tcl funcions: + - * / % abs cosh log sqrt acos double log10 srand asin exp pow tan atan floor rand tanh atan2 fmod round ceil hypot sin cos int sinh. The function you wanted is pow(t,2) , or simply t*t Regards Enrique Escolano ----- Original Message ----- From: <... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Amancherla, Sundar (GE, Research) Thanks Enrique My question is more to do with the visualization of the cut slice from the cube with out viewing anything else. I tried to switch of the layers, but I am not able to just visualize the slice alone with the boundary lines of the cut surfaces. I am also seeing other parts of the cube when I switch of certain layers... How can I transfer the information of the intersection to another layer so as to visualize it independently? Thanks in advance Aman -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] RE: NEED HELP WITH GEOMETRY
Send by: Enrique Escolano You can send your desired entities to another layer, In the Layer window do you have a "Send to" button to do this. You can also set "also lower entities" to send to the layer all dependent sub-entities. ----- Original Message ----- From: "Amancherla, Sundar (GE, Research)" <Sundar.Amancherla at geind.ge.com> To: <gidlist at gatxan.cimne.upc.edu> Sent: Wednesday, June 14, 2006 4:19 PM Subject: RE: [GiDlist] RE: NEED HELP WITH GEOMETRY > Thanks Enrique > > My question is more to do with the visualization of the cut slice from the ... [GiDlist] NEED HELP WITH GEOMETRY
Send by: Amancherla, Sundar (GE, Research) I am trying to mesh the geometry with 1000 volumes in a cube generated by voronoi tessellation. I am attaching a batch file to generate the geometry. I am not able to mesh the structure. It gives me the errors that are seen in the attached png image. Is there a way to adjust the meshing parameters and be able to mesh the structure. Thank you very much for your help in advance. Aman -------------- next part -------------- A non-text attachment was scrubbed... Name: 1000g_rbox.zip Type: application/x-zip-compressed Size: 262494 bytes Desc: 1000g_rbox.zip Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060623/ada15eef/attachment.bin... [GiDlist] usb, linux
Send by: Miguel Pasenau ¿usb? ¿linux? ¿maxosx? miguel -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060711/1cd307c7/attachment.htm [GiDlist] How to use the Delaunay algorithm?
Send by: Wenshui Gan Hi, I am trying to create a mesh from a cloud of points inside GiD 8.0 using the Delaunay algorithm. Could someone tell me how to do that? Thanks. Wenshui Gan [GiDlist] How to use the Delaunay algorithm?
Send by: Miguel Pasenau The person who can answer this will come next week. miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Wenshui Gan Enviado el: miércoles, 19 de julio de 2006 0:30 Para: gidlist at gatxan.cimne.upc.edu Asunto: [GiDlist] How to use the Delaunay algorithm? Hi, I am trying to create a mesh from a cloud of points inside GiD 8.0 using the Delaunay algorithm. Could someone tell me how to do that? Thanks. Wenshui Gan _______________________________________________ GiDlist mailing list ... [GiDlist] How to use the Delaunay algorithm?
Send by: Enrique Escolano Hello, You can connect a cloud of points by Delaunay with triangles (note: the algorithm is 2D: the points are internally projected into an automatic plane to be connected) MEscape Meshing ConnectPoints CreateTriangles (and select the source points) You can also create a planar surface instead each triangle with MEscape Meshing ConnectPoints CreateSurfaces (and select the source points) or the points can be also connected with tetrahedra MEscape Meshing ConnectPoints CreateTetrahedra (and select the source points) Regards Enrique Escolano ----- Original Message ----- From: "Wenshui Gan" <gan at actainc.com... [GiDlist] postprocess frequencies
Send by: andreamordini Dear all, I want to postprocess the frequencies but they are not related to nodes or gauss points. How can I specify them in the .res file? Moreover, is it possible to relate them to the corresponding mode shapes in the output ? (i.e. when I plot the mode shape as a deformed shape I can in the same time visualize the frequency) thanks andrea mordini ________________________________________________________________ Mutui a tassi scontati da 30 banche. Richiedi online e risparmia. Servizio gratuito. http://click.libero.it/mutuionline [GiDlist] postprocess frequencies
Send by: Miguel Pasenau Hi, There are some things I don't understand: ¿where are these frequencies defined? ¿Over nodes, elements, isolated points in the domain, ...? I understand that 'frequencies' is just a scalar result, or? ¿mode shape? Is it a mesh? Can you send an example? Yes, you can visualize any result (contour fill, vectors, etc.) on a deformed mesh. miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de andreamordini Enviado el: miércoles, 19 de julio de 2006 10:30 Para: gidlist Asunto: [GiDlist] postprocess frequencies Dear all, I want to postprocess the frequencies but they are not related to nodes or gauss points. How can I specify them in the .res file? Moreover, is it possible to relate them to the corresponding mode shapes in the output ? (i.e. when I plot the mode shape as a deformed shape I can in the same time visualize the frequency) thanks andrea mordini ________________________________________________________________ Mutui a tassi scontati da 30 banche. Richiedi online e risparmia. Servizio gratuito. ... [GiDlist] question about bas format
Send by: andreamordini I have to write a certain amount of element numbers in the same line. How i can do it? Maybe with strings? How can I manage them? thanks andrea mordini ________________________________________________________________ Mutui a tassi scontati da 30 banche. Richiedi online e risparmia. Servizio gratuito. http://click.libero.it/mutuionline [GiDlist] question about bas format
Send by: Miguel Pasenau The person who can answer this will come next week. miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de andreamordini Enviado el: miércoles, 19 de julio de 2006 10:28 Para: gidlist Asunto: [GiDlist] question about bas format I have to write a certain amount of element numbers in the same line. How i can do it? Maybe with strings? How can I manage them? thanks andrea mordini ________________________________________________________________ Mutui a tassi scontati da 30 banche. Richiedi online e risparmia. Servizio gratuito. ... [GiDlist] question about bas format
Send by: Jorge Suit Perez Ronda Hi, if you look at http://www.gidhome.com/support/gid_16.subst#SEC269 you can see that if you write * at the end of the line then gid keep on writing on the same line. For instance, *loop elems *ElemsNum * *end elems hope it helps. best regards, Jorge On Wed, 2006-07-19 at 10:28 +0200, andreamordini wrote: > I have to write a certain amount of element numbers in the same line. > How i can do it? Maybe with strings? How can I manage them? > thanks > > andrea mordini > > > > ________________________________________________________________ ... [GiDlist] (no subject)
Send by: andreamordini Frequencies are not related to elements of nodes. They are a structural properties. The mode shapes are the deformed shapes corresponding to the frequencies. I have already plotted them as a normal deformation. I would like to associate each frequency with the related mode shape and to visualize it in the same time. Visualize the frequency means just to write the number somewhere on the screen... andrea ________________________________________________________________ Mutui a tassi scontati da 30 banche. Richiedi online e risparmia. Servizio gratuito. http://click.libero.it/mutuionline... [GiDlist] (no subject)
Send by: Miguel Pasenau ¿how are you doing this frequency analysis? If you enter the results as results of frequency analysis and the frequency value as step value like this: Result resonance Frequency analysis 340.0 Scalar on nodes Result resonance Frequency analysis 480.0 Scalar on nodes Then the value will be shown in the comments lines, like the example in the picture: If the comment lines do not appear, you can make them appear with Utilities-->Tools-->Comments from where you can also create template comments with fields like %an, %sv, among others which will be substituted by the analysis name and step value, respectively, with each result visualization. You can also write it directly in a text box with Utilities-->Dimension-->Text. Best regards Miguel -----Mensaje original----- De: ... [GiDlist] (no subject)
Send by: Ramon Ribó Hello,
The most simple way is just to include the frequencies list in
the output file associated with the analysis.
Check, in the help:
Customization->Executing an external program->Showing
feedback when running the solver
Most involved ways include to use TCL in order to created a
specialized windows that displays this data.
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com ramsan at compassis.com
c/ Tuset, 8 7-2 tel. +34 93 218 19 89
08006 Barcelona, Spain fax. +34 93 396 97 46
En Wed, 19 Jul 2006 13:35:49 +0200, andreamordini
<...
[GiDlist] Translating definitive lines
Send by: Edwin Nyirenda Hi everybody. I am evaluating GID 7.2 and in tutorial 1, Section 2.9 there are instructions on how to translate definitive lines from the "aux" layer to "profile" layer. The problem is that I can not fine the "Entities" menu on the Layers Window. How do I proceed? Please help. Edwin __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com [GiDlist] Translating definitive lines
Send by: Miguel Pasenau Hi, I suggest you to use the latest gid 8.0.2 instead of the three year old 7.2 version. The button you are looking for is the 'Send to' button, which sends the entities from one layer to another (it has been renamed). greetings miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Edwin Nyirenda Enviado el: miércoles, 19 de julio de 2006 20:21 Para: gidlist at gatxan.cimne.upc.es... [GiDlist] Translating definitive lines
Send by: Edwin Nyirenda Thanks Miguel for your help. It has worked. Meanwhile, I will follow your suggestion and download the latest version. Regards, Edwin --- Miguel Pasenau <miguel at cimne.upc.edu> wrote: > Hi, > I suggest you to use the latest gid 8.0.2 instead of > the three year old 7.2 > version. The button you are looking for is the 'Send > to' button, which sends > the entities from one layer to another (it has been > renamed). > greetings > > miguel > >... [GiDlist] about the bas file
Send by: Andrea Mordini I create a job in GiD and I save it with JobName. Is it possible to pass this information into the bas file? Andrea --------------------------------------------------------------- Andrea Mordini VCE Holding GmbH Civil Engineer, Ph.D. Hadikgasse 60 Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria mordini at vce.at Fax.: (+43 1) 893 86 71 http://www.andreamordini.com http://www.vce.at --------------------------------------------------------------- ... [GiDlist] about the bas file
Send by: Enrique Escolano You can write this information in the bas file with a *tcl command, invoking GiD_Info to ask GiD. Some like this in your bas file. *tcl(GiD_Info project modelname) Enrique ----- Original Message ----- From: "Andrea Mordini" <mordini at vce.at> To: <gidlist at gatxan.cimne.upc.es> Sent: Wednesday, July 26, 2006 4:57 PM Subject: [GiDlist] about the bas file > I create a job in GiD and I save it with JobName. > Is it possible to pass this information into the bas file? ... [GiDlist] about the bas file
Send by: Andrea Mordini It seems to be not so easy. The GiD_Info project function provides the directory of the model and not the model name. Therefore, I have written a tcl prodecure to get the name from the directory. But in the documentation I read that the tcl procedure must return a numeric value... Any other suggestion? andrea --------------------------------------------------------------- Andrea Mordini VCE Holding GmbH Civil Engineer, Ph.D. Hadikgasse 60 Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria mordini at vce.at... [GiDlist] about the bas file
Send by: Miguel Pasenau A tcl procedure can return evrything you want, numbers, lists, strings, arrays, etc. But instead of writing a procedure just use the tcl command 'file': *tcl(file tail [ GiD_Info project modelname]) miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Andrea Mordini Enviado el: viernes, 28 de julio de 2006 9:05 Para: gidlist at gatxan.cimne.upc.edu... [GiDlist] about the bas file
Send by: Enrique Escolano GiD_Info project modelname returns the full model name (the full path to the .gid model directory, without include the .gid extension) some like: C: mp hename you can use the tcl "file tail" command to extract the model name *tcl(file tail [GiD_Info project modelname]) The value returned by the *tcl procedure is directly printed to the output calculation file. You can't assign this value to a bas level variable because this variables must be integer or real, not strings, but probably you don´t need to store it in a bas variable. *set var a=tcl(file tail [GiD_Info project modelname]) !! error, because the tcl procedure return a string Note: if do you have an old GiD version, maybe not exists the "modelname" subcommand, then must get the second item of the "GiD_info project" command , with the tcl "lindex" command, some like this: *tcl(file tail [lindex [GiD_Info project] 1]) Regards Enrique ----- Original Message ----- From: "Andrea Mordini" <... [GiDlist] about the bas file
Send by: Andrea Mordini thanks. it works andrea --------------------------------------------------------------- Andrea Mordini VCE Holding GmbH Civil Engineer, Ph.D. Hadikgasse 60 Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria mordini at vce.at Fax.: (+43 1) 893 86 71 http://www.andreamordini.com http://www.vce.at ---------------------------------------------------------------... [GiDlist] background mesh
Send by: Thanasis Makrodimopoulos Hi, When I use the background mesh (mesh size given for each element) after some steps of refinement I get elements with bad shape (like in image1.jpg attached) Moreover after some steps it is quite possible to get the message shown in image2.jpg. Is it possible to give any advice? Regards, Thanasis -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060729/418b01bb/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: Image2.jpg Type: application/octet-stream Size: 11860 bytes Desc: not available Url : ... [GiDlist] background mesh
Send by: Enrique Escolano Hello, The problem is that the background mesh sizes are used to generate the elements of the surfaces / volumes, but to generate the boundary line elements this background size only affect the line ends, and it become a problem when you need to refine the mesh near this lines: you have too different relative sizes on the boundary and on the interior (like your picture) You can try to divide this boundary lines to have more control on its mesh size. For next GiD versions we will try to correct this problems. Regards Enrique ----- Original Message ----- From: Thanasis Makrodimopoulos To: gidlist at gatxan.cimne.upc.es... [GiDlist] GID ver. 8 stoped displaying the menu tool bar
Send by: Dr. Kobeid Hi, My GID ver. 8 stoped displaying the menu tool bar (I.e, Files, Utilities, ,,, etc) Is there a way to restore it back because I have reinstall the software and the problem still there, I even installed the older version 7.2 but still having same problem. thanks, K -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060731/7ca982e1/attachment.htm [GiDlist] GID ver. 8 stoped displaying the menu tool bar
Send by: Martin Meiler Hi, there is a directory where all your personal GiD settings are stored. It can be found at Windows %APPDATA%GiDgid.ini where %APPDATA% is something like c:Documents and SettingsUSERNAMEApplication Data or Linux ~/.gidDefaults Just rename this file and the menu should reappear. Best regards Martin Dr. Kobeid wrote: > Hi, > My GID ver. 8 stoped displaying the menu tool bar (I.e, Files, > Utilities, ,,, etc) > > > > Is there a way to restore it back because I have reinstall the software > and the problem still there, I even installed the older version 7.2 but ... [GiDlist] GID ver. 8 stoped displaying the menu tool bar
Send by: Miguel Pasenau Hello, You can restore it back the way Matrin Meiler told you. ¿Only the top menu bar disappeared? If so, you can also restore it back by: 1. right click over any icon of the icon bars, the right menu or the command lines, and a contextual menu will pop up, 2. select the option 'Configure toolbars' from the menu 3. the entry 'Up menu' of the listbox refers to the top menu bar 4. check the radiobutton option 'inside' and the top menu bar should appear. ¿can you tell us how did the menu bar disappear? ¿was it with the latest gid 8.0.2? thanks miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] delete all points
Send by: Dr. Kobeid Hello, How can I select all the points in my structure and then delete them all using something similar to .central.s process escape escape escape escape geometry delete all p Thanks, K -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060803/d0690b22/attachment.htm [GiDlist] delete all points
Send by: Ramon Ribó GiD_Process escape escape escape escape geometry delete point 1: escape -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Tuset, 8 7-2 tel. +34 93 218 19 89 08006 Barcelona, Spain fax. +34 93 396 97 46 En Thu, 03 Aug 2006 05:39:05 +0200, Dr. Kobeid <kobeidat at gmail.com> escribió: > Hello, > > How can I select all the points in my structure and then delete them all ... [GiDlist] node of different elements
Send by: Andrea Mordini I have two groups of nodes related to different elements, let's say from 1 to 20 related to plane quadrilateral elements and from 21 to 30 related to linear beam elements. How is it possible to write them separately in the bas file? andrea --------------------------------------------------------------- Andrea Mordini VCE Holding GmbH Civil Engineer, Ph.D. Hadikgasse 60 Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria mordini at vce.at Fax.: (+43 1) 893 86 71 http://www.andreamordini.com... [GiDlist] node of different elements
Send by: Enrique Escolano You can define and apply for example some additional condition to the source lines/surfaces to be transferred over nodes on the mesh, and then you can made a loop over the nodes of this conditions. You can also use two layers to separate this entities. Regards Enrique Escolano ----- Original Message ----- From: "Andrea Mordini" <mordini at vce.at> To: <gidlist at gatxan.cimne.upc.es> Sent: Thursday, August 03, 2006 5:10 PM Subject: [GiDlist] node of different elements > I have two groups of nodes related to different elements, ... [GiDlist] Exported mesh from GID
Send by: Johane Bracamonte Hello, I would like to process a mesh generated by GID in a fortran routine, but when i export the mesh to a GID mesh format (.msh) there are integer numbers instead of real numbers in some nodes ( for example the coordinates shown in the file are 5 4.625 0 instead of 5.0 4.625 0.0), i understand this can be problematic. When i try to export in a Nastran format the second coordinate it`s attached to the symbols *G, so i have to depurate de info of the mesh, also when i export to Nastran format GID dont translate quadratic elements. My questions are: 1) How can i generate a mesh data with only real numbers in a GID mesh file or any file? 2) There is a way in wich the GID translate quadratic elements to nastran format files? 3) Can GID put the three coordinates of a node in one line when i export the mesh to a Nastran format file? Thanks and Regards Johane Bracamonte -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Exported mesh from GID
Send by: Enrique Escolano ----- Original Message ----- From: Johane Bracamonte To: gidlist at gatxan.cimne.upc.es Sent: Thursday, August 03, 2006 10:49 PM Subject: [GiDlist] Exported mesh from GID Hello, I would like to process a mesh generated by GID in a fortran routine, but when i export the mesh to a GID mesh format (.msh) there are integer numbers instead of real numbers in some nodes ( for example the coordinates shown in the file are 5 4.625 0 instead of 5.0 4.625 0.0), i understand this can be problematic. When i try to export in a Nastran format the second coordinate it`s attached to the symbols *G, so i have to depurate de info of the mesh, also when i export to Nastran format GID dont translate quadratic elements. My questions are: 1) How can i generate a mesh data with only real numbers in a GID mesh file or any file? 2) There is a way in wich the GID translate quadratic elements to nastran format files? 3) Can GID put the three coordinates of a node in one line when i export the mesh to a Nastran format file? Thanks and Regards Johane Bracamonte -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Exported mesh from GID
Send by: Enrique Escolano Hello, I think that i must not be very difficul to read in FORTRAN this real numbers without the dot, probably the best option is to change your code. Which FORTRAN format do you use to read it? When using NASTRAN format, it has fixed width fields (8 or 16 character fields), then you can know where begin and end each number. You probably are using the simple NASTRAN template to export the mesh. You can donwnload (from the Data->Problemtype->Internet retrieve) the NASTRAN 3.2 problemtype, in order to use much more NASTRAN features (materials, conditions, etc) Note: this problemtype is a good interface between GiD an NASTRAN, but it not includes the NASTRAN solver. In any case, you can easily write a simple template to export the mesh in your desired format, this is a very simple example: *realformat "%15.9g" *intformat "%8i" NODES *loop nodes *nodesnum *nodescoord *end nodes ELEMENTS *loop elems *elemsnum *elemsconec *end elems You can copy the previous code in a file inside the /templates GiD directory, with extension ".bas", for example "test.bas" and then you can export the mesh from the menu Files->Export->Using template .bas->test You can read the GiD help about customization, template file to know the valid commands in a .bas GiD template file. Regards Enrique ----- Original Message ----- From: Johane Bracamonte To: ... [GiDlist] Exported mesh from GID
Send by: Ramon Ribó Hi, Go to file: <GiD installation dir>/templates/NastranMesh.bas and modify the file to suit your needs. The format has the same characters than in C. For example, using: *format "%.8f" You will obtain: 5.000000 Regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Tuset, 8 7-2 tel. +34 93 218 19 89 08006 Barcelona, Spain fax. +34 93 396 97 46 En Thu, 03 Aug 2006 22:49:17 +0200, Johane Bracamonte <johanehb at gmail.com... [GiDlist] counterclockwise order of the nodes
Send by: Johane Bracamonte Hello, I' m working with BEM in a pipelike geometry, and i need that the order of the nodes of and element generate a normal vector pointing outside the surface, the numeration of the nodes must be counterclockwise. Reading the mesh in a GID format (.msh) i realice that this statement it`s right for the "outer" surface of the mesh but in the "inner" surface of the pipe the normal vector points inside the body. This can be avoided?, i' m making some mistake? Thanks in advance. Johane Bracamonte -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060804/a82eca33/attachment.htm... [GiDlist] counterclockwise order of the nodes
Send by: Enrique Escolano Usually, when you create a volume in GiD, the boundary surfaces are oriented with normal pointing inside the volume. In any case, you can change this orientation: menu Utilities->Swap normals->Surfaces When you generate a mesh, the element's normals are the same as the source surface normals. Regards Enrique Escolano ----- Original Message ----- From: Johane Bracamonte To: gidlist at gatxan.cimne.upc.es Sent: Friday, August 04, 2006 11:26 PM Subject: [GiDlist] counterclockwise order of the nodes Hello, I' m working with BEM in a pipelike geometry, and i need that the order of the nodes of and element generate a normal vector pointing outside the surface, the numeration of the nodes must be counterclockwise. Reading the mesh in a GID format (.msh) i realice that this statement it`s right for the "outer" surface of the mesh but in the "inner" surface of the pipe the normal vector points inside the body. This can be avoided?, i' m making some mistake? Thanks in advance. Johane Bracamonte -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] counterclockwise order of the nodes
Send by: Ramon Ribó Check menus: View->Normals Utilities->Swap normals -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Tuset, 8 7-2 tel. +34 93 218 19 89 08006 Barcelona, Spain fax. +34 93 396 97 46 En Fri, 04 Aug 2006 23:26:06 +0200, Johane Bracamonte <johanehb at gmail.com> escribió: > Hello, > > I' m working with BEM in a pipelike geometry, and i need that the order ... [GiDlist] using GiD post
Send by: Andrea Mordini I would like to use the GiD post library but I am not able to call it. The example provided with the library does not work. I use the g95 fortran compiler. What do I have to specify in the fortran file to call the subroutines? andrea --------------------------------------------------------------- Andrea Mordini VCE Holding GmbH Civil Engineer, Ph.D. Hadikgasse 60 Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria mordini at vce.at Fax.: (+43 1) 893 86 71 http://www.andreamordini.com... [GiDlist] using GiD post
Send by: Jorge Suit Perez Ronda The examples provided are tested with g77. We need to check it with g95. As soon as we compile the tests with g95 we'll let you know. Could you provide us with what is failing in your case? regards, Jorge On Tue, 2006-08-08 at 16:50 +0200, Andrea Mordini wrote: > I would like to use the GiD post library but I am not able to call it. > The example provided with the library does not work. > I use the g95 fortran compiler. > What do I have to specify in the fortran file to call the subroutines? > > andrea > > > --------------------------------------------------------------- ... [GiDlist] using GiD post
Send by: Andrea Mordini I run the testpostfor.f file and I obtain: undefined reference for 'subroutine name' I think the problem is not the compiler itself but that inside the .f file there is no linking to the library and therefore, the compiler is not able to locate the called subroutines. andrea [GiDlist] using GiD post
Send by: Enrique Escolano You must first compile the library - gidpost.lib is included in our distribution precompiled for Windows, then is not necessary to compile again for this platform. - for other operating system must be compiled (can use the /gidpost/unix Makefile to compile libgidpost) And then must specify this library when linking your program using its functions. (For Windows, using Visual Studio must change the Link Input category setting, adding gidpost.lib to "Object/Library modules", and the location of this library in "Additional library path") Regards Enrique Escolano ----- Original Message ----- From: "Andrea Mordini" <mordini at vce.at... [GiDlist] using GiD post
Send by: Andrea Mordini How can I link the library with g95 compiler? andrea [GiDlist] using GiD post
Send by: Enrique Escolano I don't know how to use g95 I think that you can specify a library directory to search with the -L"directory" flag, and you can add a list of librarynames at the end of the command line, like other source code files. some like this: g95 -o yourprogram -Lyourlibrarypath source1.f90 ... sourcen.f90 libgidpost.a But in any case, I'm Windows user, I don't kow how to work in Linux/Unix If do you have several files, probably you need to create a Makefile for your project. Regards Enrique ----- Original Message ----- From: "Andrea Mordini" <mordini at vce.at... [GiDlist] entities in two conditions
Send by: Andrea Mordini I would like to select only the entities (nodes or elements) which are
subjected to two conditions at the same time.
Something like this:
*Set Cond1 Degree_of_Freedom *nodes
*if(Cond1(DoF,int)==2)
*loop nodes *OnlyInCond1
*Set Cond2 Cond Node_mass *nodes
node *NodesNum *NodesCoord *cond2(1,real) *cond2(2,real)
*end nodes
*end
in this example, which obviously does not work, I call the conditions
cond1 and cond2.
Any suggestion?
andrea
---------------------------------------------------------------
Andrea Mordini VCE Holding GmbH
Civil Engineer, Ph.D. Hadikgasse 60
Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria
...
[GiDlist] entities in two conditions
Send by: Enrique Escolano A possibility is to define a single conditions instead two, with the requiered common fields: degrees of freedom and mass properties. Other option is to call a *tcl procedure. This procedure can ask GiD to get the conditions information, and manipulate it to return what you want to be printed to the calculation file. I recommend you the first option, because it will be much more efficient, specially if you work with a lot of nodes. Regards Enrique ----- Original Message ----- From: "Andrea Mordini" <mordini at vce.at> To: <gidlist at gatxan.cimne.upc.es... [GiDlist] entities in two conditions
Send by: Andrea Mordini Specifying two conditions at the same time could be a nice feature of the next GiD version... don't you think? andrea [GiDlist] entities in two conditions
Send by: Enrique Escolano This feature was always possible. You can define the condition in the .cnd file as CANREPEAT: yes (read GiD help about the .cnd conditions file syntax) Then the user can assign the same condition more than once to the same entity, (by default a condition is canrepeat: no, and when the user assing this condition to an entity, it replaces a previous condition) Enrique ----- Original Message ----- From: "Andrea Mordini" <mordini at vce.at> To: <gidlist at gatxan.cimne.upc.edu> Sent: Monday, August 14, 2006 11:52 AM Subject: Re: [GiDlist] entities in two conditions >... [GiDlist] entities in two conditions
Send by: Andrea Mordini Hello Enrique, I was thinking about the possibility to select entities which are subjected to two conditions at the same time. Please refers to the initial post of the thread. Andrea --------------------------------------------------------------- Andrea Mordini VCE Holding GmbH Civil Engineer, Ph.D. Hadikgasse 60 Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria mordini at vce.at Fax.: (+43 1) 893 86 71 http://www.andreamordini.com... [GiDlist] entities in two conditions
Send by: Enrique Escolano Sorry by my previous anser, I think that you can do what you want by using *Set cond, and then *Add cond commands
*Set Cond Degree_of_Freedom *nodes
*Add Cond Cond Node_mass *nodes
*loop nodes *OnlyInCond
*if(Cond(DoF,int)==2)
node *NodesNum *NodesCoord *cond2(1,real) *cond2(2,real)
*endif
*end nodes
Off course, both conditions must have the common referenced fields (DoF, etc)
By default the entities can't be repeated: If the conditions are applied over the same node, the last condition overwrite the previous one.
It's possible to use the *CanRepeat modifier to accept an entity several times in the list:
*Set Cond Degree_of_Freedom *nodes *CanRepeat
*Add Cond Cond Node_mass *nodes *CanRepeat
*loop nodes *OnlyInCond
*if(Cond(DoF,int)==2)
node *NodesNum *NodesCoord *cond2(1,real) *cond2(2,real)
*endif
*end nodes
Note: I recomment you to avoid to use the index number of a condition number, it's better to use its question name (else, if you modify the condition definition, and insert new fields the index will change and to update the bas file can be expensive)
Regards
Enrique Escolano
----- Original Message -----
From: "Andrea Mordini" <...
[GiDlist] entities in two conditions
Send by: Andrea Mordini Enrique Escolano schrieb: > Sorry by my previous anser, I think that you can do what you want by > using *Set cond, and then *Add cond commands > > *Set Cond Degree_of_Freedom *nodes > *Add Cond Cond Node_mass *nodes > *loop nodes *OnlyInCond > *if(Cond(DoF,int)==2) > node *NodesNum *NodesCoord *cond2(1,real) *cond2(2,real) > *endif > *end nodes > Hello Enrique, I think in the way you suggest, I can select the entities which are in the first OR in the second condition, and not the entities which are in the first AND in the second...am I wrong? thanks andrea --------------------------------------------------------------- Andrea Mordini VCE Holding GmbH Civil Engineer, Ph.D. Hadikgasse 60 Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria ... [GiDlist] entities in two conditions
Send by: Enrique Escolano Yes, you are right, To use *sed cond, *add cond is like an OR selection, non like an AND. We can think to add for next versions some new command for this AND selection. (now you only can do what you want with a tcl procedure) Enrique ----- Original Message ----- From: "Andrea Mordini" <mordini at vce.at> To: <gidlist at gatxan.cimne.upc.edu> Sent: Monday, September 11, 2006 7:36 PM Subject: Re: [GiDlist] entities in two conditions > Enrique Escolano schrieb: > > Sorry by my previous anser, I think that you can do what you want by ... [GiDlist] using GiD post
Send by: Miguel A. De Riera Pasenau Perhaps the problem lies in the naming convention that g95 uses for external procedures which can be diferent from the ones of g77 (i think that g77 adds an underscore to the function names which, in turn, should be in capital letters). as jorge said, we'll check this. miguel [ Charset ISO-8859-1 unsupported, converting... ] > I don't know how to use g95 > I think that you can specify a library directory to search with the -L"directory" flag, and you can add a list of librarynames at > the end of the command line, like other source code files. > some like this: > g95 -o yourprogram -Lyourlibrarypath source1.f90 ... sourcen.f90 libgidpost.a ... [GiDlist] using GiD post
Send by: Jorge Suit Perez Ronda Attached is a modified Makefile, replace the provided in unix directory of gidpost for the attached one. With this makefile you can choose the fortran compiler: make FC=f77 or make FC=f95 F2C=g2c F2C is needed in my system in order to resolve some symbols when linking with f95. The next version will contain this new makefile. regards, Jorge On Wed, 2006-08-09 at 09:10 +0200, Andrea Mordini wrote: > I run the testpostfor.f file and I obtain: > undefined reference for 'subroutine name' > I think the problem is not the compiler itself but that inside the .f > file there is no linking to the library and therefore, the compiler is ... [GiDlist] using GiD post
Send by: Andrea Mordini I am using windows... the library should be already compiled for windows, isn't? andrea [GiDlist] using GiD post
Send by: Enrique Escolano Yes, the gidpost zip file contain the library sources, and also a compiled version for Windows (single and multi-tread) Enrique Escolano ----- Original Message ----- From: "Andrea Mordini" <mordini at vce.at> To: <gidlist at gatxan.cimne.upc.edu> Sent: Monday, August 14, 2006 8:23 AM Subject: Re: [GiDlist] using GiD post > I am using windows... > the library should be already compiled for windows, isn't? > > andrea > > _______________________________________________ ... [GiDlist] create a geometry through a gid mesh file?
Send by: herve nako is it possible to create a geometry through a gid mesh file? I can
import the mesh file as a gid mesh file but i don't have any geometry. I want to change the
size of the elements in this mesh file, i would like to increase the element size.
Thank you
Herve Poumeni
Mechanical Engineering Student
Technical University Berlin
Germany
---------------------------------
Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. Cliquez ici.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] create a geometry through a gid mesh file?
Send by: Ramon Ribó Try: Files->Import->Surface mesh -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Tuset, 8 7-2 tel. +34 93 218 19 89 08006 Barcelona, Spain fax. +34 93 396 97 46 En Wed, 09 Aug 2006 10:04:06 +0200, herve nako <hervenako at yahoo.fr> escribió: > is it possible to create a geometry through a gid mesh file? I can > > import the mesh file as a gid mesh file but i don't have any geometry. ... [GiDlist] Help: How can i generate a remesh a surface mesh with quadrilaterals elements
Send by: herve nako How can i generate a remesh a surface mesh with quadrilaterals elements --------------------------------- Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. Cliquez ici. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060810/4cafb199/attachment.htm [GiDlist] Help: How can i generate a remesh a surface mesh with quadrilaterals elements
Send by: herve nako Hello How can i generate a remesh a surface mesh with quadrilaterals elements? Thank you forwards Herve Nako Technival University Berlin --------------------------------- Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. Cliquez ici. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060810/e27009fe/attachment.htm... [GiDlist] Help: How can i generate a remesh a surface mesh with quadrilaterals elements
Send by: Enrique Escolano Hello, If you only have the triangle mesh, but not the source geometry, you can try to import as surfmesh, and to obtain quadrilaterals assign as new element type quadrilateral (Mesh->Element type->Quadrilateral) and then generate a mesh Enrique ----- Original Message ----- From: herve nako To: gidhelp Sent: Thursday, August 10, 2006 5:31 PM Subject: [GiDlist] Help: How can i generate a remesh a surface mesh with quadrilaterals elements Hello How can i generate a remesh a surface mesh with quadrilaterals elements? Thank you forwards Herve Nako Technival University Berlin ------------------------------------------------------------------------------ Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. Cliquez ici. -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] unsubscribe-q.du at nimr.nl
Send by: Qiang Du Note: New address Dr. Qiang Du Netherlands Institute for Metal Research Mekelweg 2 2628 CD Delft Tel: 0031 15 2782263 Fax: 0031 15 2782591 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060814/e999dc76/attachment.htm [GiDlist] DXF export problem (gid 8.0c)
Send by: Andreas Hauck Hello,
when I try to export a geometry using GiD 8.0c (Windows XP) into
dxf-format, the program aborts without a message and does not write the
file. When I try the same under Linux (SuSe 10, kernel 2.6), I can
create the file but I can not import it into CorelDraw 11 as it does not
recognize the format of the file. When I export the same geometry using
GiD 7.7.2b under Windows and Linux, everything works as expected and I
can import the dxf-file into CorelDraw 11. Do you know what has changed
in the export-function for dxf?
Regards,
Andreas
--
_/ _/_/ _/_/_/ Friedrich Alexander Universitaet Erlangen
_/ _/ _/ _/ Lehrstuhl fuer Sensorik
_/ _/ _/ Paul-Gordan-Str. 3-5, D-91052 Erlangen
_/ _/_/ _/_/_/
_/ _/ _/ Friedrich Alexander University Erlangen
_/ _/ _/ _/ Department of Sensor Technology
_/_/_/ _/_/ _/_/_/ Paul-Gordan-Str. 3-5, D-91052 Erlangen
M.Sc. Andreas Hauck
email.: ...
[GiDlist] DXF export problem (gid 8.0c)
Send by: Miguel Pasenau Hello, ¿have you tried the latest version? ftp://gid.cimne.upc.es/pub/gid/Windows/GiD8.0.2-win.exe ftp://gid.cimne.upc.es/pub/gid/Linux/gid8.0.2-dyn-kernel2.6.tar.gz ftp://gid.cimne.upc.es/pub/gid/Linux/gid8.0.2-dyn-64.tar.gz ¿this also happens for other geometries? ¿can you send us the geometry? Thanks miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] Defined materials and assigned materials
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060904/10efdb90/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060904/10efdb90/attachment.htm [GiDlist] Defined materials and assigned materials
Send by: Enrique Escolano Directly not exists the list of used materials,
You must check all geometry/mesh entities to know which materials are assigned to some entity.
Some like this to get the list of the name or the materials assigned to some element:
proc MeshUsedMaterials { } {
foreach elemtype [lrange [GiD_Info Mesh] 1 end] {
foreach elem [GiD_Info mesh Elements $elemtype -sublist] {
set matnum [lindex $elem end]
if { $matnum > 0 } {
incr matnum -1
set usetmatnum($matnum) 1
}
}
}
set matlist [GiD_Info materials]
set res ""
foreach matnum [lsort -integer [array names usetmatnum]] {
lappend res [lindex $matlist $matnum]
}
return $res
}
----- Original Message -----
From: ...
[GiDlist] grid lines
Send by: Sebastian Lambeck Hi, I am wondering, if GID7.4 can show grid lines which tell the position in two dimension within a contour plot. More specificly, I have a 3-dimensional contour plot which shows a figure in its undeformed configuration in the x-y-plane (rotate->plane XY) . This basically presents a cross section of my figure. Now, it would be of interest to see, how this cross-section lays in a x-y-plotting domain x = [0,10] and y = [0,10] and e.g. what approximate deformation at a certain position (x,y) is displayed. For this grid lines would be very helpful which are drawn, let's say with a distance of 1 in both coordinate directions. Especially, if two different results written as bitmaps have to be compared, it is quite a tricky task without grid lines - you would need to use ruler. Cheers Sebastian -- "Feel free" – 10 GB Mailbox, 100 FreeSMS/Monat ... Jetzt GMX TopMail testen: ... [GiDlist] grid lines
Send by: Enrique Escolano Sorry, at this moment, this grid lines only can be drawn in preprocess mode, in geometry view (to aid to specify coordinates in the XY plane), but not in postprocess. We can think to add to future GiD versions for postprocess also, and not only being in the XY plane. Now in posprocess you can only draw a grid when visualizing graphs. You can use some trick, like create a picture file with this grid, and use is as background image (View->Background image->Real size...) Enrique Escolano ----- Original Message ----- From: "Sebastian Lambeck" <pcguru at gmx.de> To: <... [GiDlist] grid lines
Send by: Miguel A. De Riera Pasenau the grid lines, which now are only available in preprocess, will be available for posprocess too, in the next beta version. miguel [ Charset UTF-8 unsupported, converting... ] > Sorry, at this moment, this grid lines only can be drawn in preprocess mode, in geometry view (to aid to specify coordinates in the > XY plane), but not in postprocess. > We can think to add to future GiD versions for postprocess also, and not only being in the XY plane. > > Now in posprocess you can only draw a grid when visualizing graphs. > > You can use some trick, like create a picture file with this grid, and use is as background image (View->Background image->Real ... [GiDlist] Separated Surface Meshes
Send by: Miguel Baritt Hi all, I am trying to generate a regular mesh in a rectangular geometry and then export it to Nastran format. I need separated surface meshes, however, once I have exported the mesh, I get one surface mesh which incloses all of them. How can I generate surface meshes separately? Thanks for your help Miguel Baritto Mechanical Engineer -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060904/cbb753a7/attachment.htm [GiDlist] Separated Surface Meshes
Send by: Enrique Escolano If you are using the template NastranMesh menu Files->Export->Using template bas (only mesh)->NastranMesh You can load some problemtype that define materials (like the Data->Problemtypes->Examples/problem_type_solid1) and assign different materials to different parts. (Data->Materials...) Then you will obtain the elements of the nastran file separated by different properties. You can also use the Nastran problemtype to apply all conditions, materials, etc and obtain the calculation file for NASTRAN. Enrique Escolano ----- Original Message ----- From: Miguel Baritt To: gidlist at gatxan.cimne.upc.es... [GiDlist] Problems in create more elements in a mesh of a problem type
Send by: ascosta at portugalmail.pt An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060912/7478f035/attachment.txt -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060912/7478f035/attachment.htm [GiDlist] Problems in create more elements in a mesh of a problem type
Send by: Enrique Escolano The normal way using GiD is to assign the conditions and materials to the geometric entities, not to mesh entities. When you generate the mesh this conditions are automatically transferred to the mesh, then there is no problem when remeshing. Enrique ----- Original Message ----- From: ascosta at portugalmail.pt To: gidlist at gid.cimne.upc.es Sent: Tuesday, September 12, 2006 10:43 AM Subject: [GiDlist] Problems in create more elements in a mesh of a problem type Hi!! I'm using the beta version 7.5.6. of GiD. When i'm defining a problem type, i generate the mesh and after that i define materials and conditions proprieties. The problem is that if i want to create more elements, the old mesh will be erased as well as the defined conditions. Is it possible to save all information of my initial mesh? How can i do it? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Problems in create more elements in a mesh of a problem type
Send by: Abdou Sene Hi, I just intalled GID 8. It seems not to be working like GID 7 when it comes to create a nurbs surface by lines. GID 8 draws the smallest rectangle containing the lines. And I can't use the tool bar to create a nurbs surface. Is it GID 8 or my system? Thank you Abdou --------------------------------- Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. Cliquez ici. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060913/6c36089e/attachment.htm... [GiDlist] gid 7 to gid 8
Send by: Abdou Sene
Hi,
(Sorry for not changing the title on my first message.)
I just intalled GID 8. It seems not to be working like GID 7 when it comes to create a nurbs surface by lines. GID 8 draws the smallest rectangle containing the lines.
And I can't use the tool bar to create a nurbs surface. Is it GID 8 or my system?
Thank you
Abdou
---------------------------------
---------------------------------
Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. Cliquez ici.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] gid 7 to gid 8
Send by: Enrique Escolano I don't understand well what's hapenning to you. It seems that you are using the menu: Geometry->Create->NURBS Surface->By line points and you probably want to use: Geometry->Create->NURBS Surface->By contour Why you can't use the tool bar to create a nurbs surface? What happens when you press the surface picture? It must ask for a group of closed boundary lines, it's the same in the versions 7 and 8. Regards Enrique Escolano ----- Original Message ----- From: Abdou Sene To: gidlist at gatxan.cimne.upc.edu Sent: Wednesday, September 13, 2006 7:01 PM Subject: [GiDlist] gid 7 to gid 8 Hi, (Sorry for not changing the title on my first message.) I just intalled GID 8. It seems not to be working like GID 7 when it comes to create a nurbs surface by lines. GID 8 draws the smallest rectangle containing the lines. And I can't use the tool bar to create a nurbs surface. Is it GID 8 or my system? Thank you Abdou ---------------------------------------------------------------------------- ------------------------------------------------------------------------------ Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. Cliquez ici. -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] contour fill gid 8
Send by: Abdou Sene Hello, I have some trouble making contour fill work in gid 8, although with the same .flavia.res file (see attached) it works in gid 7 on the same mesh (see attached). Everytime I click on "Contour file--->Displacments--->Z-Displacements", the image disapears. However, "iso surface" and "result surface" work very well. Could you please help? Best regards Abdou --------------------------------- Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. Cliquez ici. -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] contour fill gid 8
Send by: Miguel Pasenau Hi, As i see in the file mesh.msh you have defined a mesh of 6 noded triangles and another one of 3 linear elements. But in the file test.flavia.res you have defined the displacement result only for some nodes, and, exactly only on the vertices of the triangles as you can see on LabelResults.png. GiD only draws the contour fill on those triangles in which all the nodes have results values, and in this case, as only on three nodes, out of six, are the results values of displacements defined. So GiD draws nothing. But you can circumvent this by choosing how the quadratic triangles are drawn: 1. go to the preferences window and select the Graphical panel 2. look for the label Draw quadratic elements 3. select No in the combobox (there are three options: No / As lines / as curves which tells GiD how to draw the triangle and its edges) 4. press the Accept button. And youll get your Contour Fill, as the picture ContourFill.png shows. You could see the contour fill in some previous versions of GiD 7 because the quadratic elements were not fully supported. Hope it helps, best regards, Miguel _____ De: ... [GiDlist] contour fill gid 8
Send by: Miguel Pasenau Sorry, i attached twice the same file and forgot the ContourFill.png Now I send it Miguel _____ De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Miguel Pasenau Enviado el: martes, 19 de septiembre de 2006 18:28 Para: gidlist at gatxan.cimne.upc.edu Asunto: RE: [GiDlist] contour fill gid 8 Hi, As i see in the file mesh.msh you have defined a mesh of 6 noded triangles and another one of 3 linear elements. But in the file test.flavia.res you have defined the displacement result only for some nodes, and, exactly only on the vertices of the triangles as you can see on LabelResults.png. GiD only draws the contour fill on those triangles in which all the nodes have results values, and in this case, as only on three nodes, out of six, are the results values of displacements defined. So GiD draws nothing. But you can circumvent this by choosing how the quadratic triangles are drawn: 1. go to the preferences window and select the Graphical panel 2. look for the label Draw quadratic elements 3. select No in the combobox (there are three options: No / As lines / as curves which tells GiD how to draw the triangle and its edges) 4. press the Accept button. And youll get your Contour Fill, as the picture ContourFill.png shows. You could see the contour fill in some previous versions of GiD 7 because the quadratic elements were not fully supported. Hope it helps, best regards, Miguel _____ De: ... [GiDlist] contour fill gid 8
Send by: Abdou Sene Thank you Miguel. Your solution is perfect. Abdou Miguel Pasenau <miguel at cimne.upc.edu> a écrit : v:* {behavior:url(#default#VML);} o:* {behavior:url(#default#VML);} w:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} st1:*{behavior:url(#default#ieooui) } Sorry, i attached twice the same file and forgot the ContourFill.png Now I send it Miguel --------------------------------- De: gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] fixed color lines in postprocess
Send by: Aldo Ghisi Hello all, we need to visualize internal grain boundaries in a 2D-solid mesh. These lines are necessary only to divide the domains, each domain is made up with a lot of elements. At the present, we use six-noded triangles mixed with three-noded lines (just dummy elements). When countour fill is required, the lines assume the color of nodes: even if we split the nodes at the interface, then we impose a constant value, the color is always linked to the current color bar (legend), so basically the lines become indistinguishable from the bulk. Mind that the mesh is moving and deforming, so each time step this background mesh has to move. So, the question is: can we create (at least) two different color bars for (at least) two different element sets in the same plot? Or are there different strategies to solve the problem? Thank you in advance and best regards. Aldo Ghisi and Fabrizio Cacchione ... [GiDlist] fixed color lines in postprocess
Send by: Miguel Pasenau Hello, As far as i understand you have lines inside of your triangle mesh and want to view them when you are doing a Contour Fill, and, by now, these lines are hidden, i.e. you can not distinguish them because they are drawn with the same colour as the areas of the contour fill. No, you can not create to colour maps for the different element sets. If you select de 'body lines' display style you'll see the line elements, the problem is that you'll see also de edges of the triangles. And using the 'body boundaries' as display style, together with the line elements you'll also get the boundaries of the triangle mesh. (one idea we want to implement is the independent selection of the 'display style' property for each separated element set, and in this way you can visualize de 'lines' of the line-set and the 'body' of the triangle-set) You can also play with the line options which appear in the window 'Options-->Geometry-->Line options'. If you select the nice radiobutton, choose a line size of 2, 3, 4 or greter, and press de apply button, you will see your lines drawn as thick 'tubes' (don't forget to select a 'Render-->Flat' or 'Render-->Smooth' visualization). Another way is this: 1. switch off your triangle-set and let only your line-set on. 2. select the 'lines', 'boundaries' or 'body with lines' display style for the lines (if you want to see the black lines) 3. Open the Window-->'View results' window and select the 'reference mesh' panel 4. select the 'Original' radiobutton 5. if you are not happy with the colour of your line-set (for instance, the colour is one of the colour map used to draw the contour fill and so it can be difficult to distinguish the lines) check the 'Use this colour' checkbutton and choose a colour pressing the coloured button 6. press Apply and close the window With this, what you have done is to create a copy of the lines which will not be affected by the contour fill. Now you can: 6. switch the triangle mesh on 7. do your contour fill There is another way, but a bit complicated: If you know the maximum/minimum value of the result ( for instance temperature values never can be below 0 (don't laugh)), you can write a result value for the nodes of the lines out of the scale of the normal values you have for your triangles (for instance, 10e+38 or -10e+38 for all line nodes). Then set de maximum/minimum limit of the colour scale with Options->contour->'max/min options'->'set value' (or the appropriate icon) to the known maximum/minimum. With Options->contour->'max/min options'->'out max/min colour' you can select how these values, which will lie outside the scale, will be drawn, for instance black. And now you can do the contour fill. You'll get black lines over the contour fill of your triangles, because as the node values of the lines are out of scale, they will be drawn black. miguel -----Mensaje original----- De: ... [GiDlist] Line and border graphs
Send by: Jose Munoz Hello, I am testing the border and line graphs with GID 8.0.2 (which work nicely for values at gauss points!). However, I have noticed that the fields and components are not updated in the graphs section of the top menu when I load another postprocess file (*.msh or *.res). It still shows the fields and components of the previous problem *.res file (the right menu shows the correct fields, though). Cheers, Jose -- Jose J Munoz, http://www-lacan.upc.es/munoz/ Laboratori de Càlcul Numèric (LaCàN) Dep. Matemàtica Aplicada III Universitat Politècnica de Catalunya (UPC) Jordi Girona 1-3 E-08034 Barcelona, Spain ... [GiDlist] Line and border graphs
Send by: Miguel Pasenau Hello, On my version, what didn't change were only the components of the results on the top menu bar and on the left icon bar. I found the problem and corrected it for the next version. Thanks for your report, Cheers Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Jose Munoz Enviado el: jueves, 21 de septiembre de 2006 18:08 Para: gidlist at gatxan.cimne.upc.es... [GiDlist] Problems with unstructured meshes
Send by: Johane Bracamonte Hello all, I am modelling a 90º elbow with straight pipe attached at each end of the elbow for a BEM study. The straight pipe is meshed with a structured quadrilateral and quadratic mesh, and i want the surface mesh of the elbow to be unstructured quadrilateral and quadratic. The problem is that some elements of the unstructured mesh at the boundary with the structured mesh are wrong, a node of the outer face of the elbow is at the inner face, i have attached the image to explain myself better. Can anyone tell me how to solve this problem? Thanks and regards Johane Bracamonte -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Problems with unstructured meshes
Send by: Abel Coll Hi Johane,
Im Abel Coll from the GiD Team. I seems to be a bug in the code that
produces this irregular elements.
Which version of GiD are you using? Can you send me the model to be able to
fix the bug?
Thank you for notifying us this behaviour.
ABEL
__________________________________________________________
Abel Coll Sans
CIMNE - International Center for Numerical Methods in Engineering
Office C2 - C1Building - Campus Nord UPC
Gran Capità s/n, 08034 Barcelona
Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17
<mailto:abelcs at cimne.upc.edu...
[GiDlist] failing to mesh tutorial problem
Send by: Gerard Gorman Hi GID 8.0.2 appears to be failing on some of the tutorial problems - take for example the "Preprocess Tutorial 2", meshing the cooling pipe. I have left out the T-junction - see the attached figure. I have experimented many different errors tolerances, mesh sizes, and tried subdividing the volume up into 4 parts rather than just a single volume but nothing has worked for me. The error message "Failed find close faces to new node" is typical and, as can been seen in the figure, the node signaled is outside the domain. Is anyone else experienced similar problems with this version? Is this a bug or am I being silly? I've tested this on 32bit Linux version 2.6.17-1.2187_FC5 (... [GiDlist] failing to mesh tutorial problem
Send by: Abel Coll Hi Gerard,
We have checked the tutorial using the 8.0.2 version and it seems to work
fine. Have you downloaded the spanish or the english version of the
tutorial? If you are using the spanish version it is possible that some
problems appear, because this tutorials are too old.
The tutorials which have all the updates available in version 8.x.x are the
english ones.
We will get out from the web the spanish version until it will be updated.
Thank you for notifying us this behaviour.
Best regards,
ABEL
__________________________________________________________
Abel Coll Sans
CIMNE - International Center for Numerical Methods in Engineering
Office C2 - C1Building - Campus Nord UPC
Gran Capità s/n, 08034 Barcelona
Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17
...
[GiDlist] failing to mesh tutorial problem
Send by: Gerard Gorman Hi Abel Thanks for your reply. I am using the Linux 32 bit version of GID. I accessed the tutorial through the Help drop down menu. I am still confused. Using both Utilities->Repair Model and creating volumes, GID appears to think the geometry is fine. And I have no problem creating a nice surface mesh. I just cannot mesh the volume (e.g. using a chordal error of 0.1 and a max element size of 5) - I keeping getting spurious errors as illustrated in my first email. Is it the case that I have managed to create a subtly different geometry than that in the tutorial that cannot be meshed. I am a GID newbie, so if it's clear that I didn't read such-and-such a section of the manual then I'm happy to be told to RTFM the relevent section. I had trying to get up and running just by working through the tutorials. Cheers Gerard Abel Coll wrote: >... [GiDlist] failing to mesh tutorial problem
Send by: Julian Mindel Dear Abel,
I have had the same problem Gerard is having. I am
also running version 8, but on a 64 bit machine. Sometimes it produces
the same error, and other times GiD just segments out. Are the
tutorials that come with the program (not downloaded) updated? I
followed the (English) tutorials that came with GiD v8.
Best wishes,
Julian
Abel Coll wrote:
> Hi Gerard,
>
> We have checked the tutorial using the 8.0.2 version and it seems to work
> fine. Have you downloaded the spanish or the english version of the
> tutorial? If you are using the spanish version it is possible that some
...
[GiDlist] failing to mesh tutorial problem
Send by: Enrique Escolano You are right, There are some small differences between the tutorial included in GiD and the user manual or downloaded tutorials. When creating the end of the pipe, to create the top surface, the included manual say something like: Choose Geometry->Create->Planar Surface and select the four lines that define the opening of the pipe And the other manuals use: Geometry->Create->NURBS Surface->By Contour In fact with the last GiD versions planar surfaces are harly ever used (are sustituted by NURBS) Only is possible to create planar surfaces from the right buttons or by writting in the command line. In this case there is a bug in GiD 8.0.2 when creating the surface with the hole, and become bad oriented. We can solve it for the next version, thanks for your bug repport. Enrique ----- Original Message ----- From: "Julian Mindel" <... [GiDlist] failing to mesh tutorial problem
Send by: Gerard Gorman It looks like you put your finger on it Enrique. I deleted the surfaces I created using "Geometry->Create->Planar Surface" and used "Geometry->Create->NURBS Surface->By Contour" instead. After that I had little trouble meshing the volume. Thanks for your help, Gerard. Enrique Escolano wrote: > You are right, > > There are some small differences between the tutorial included in GiD and the user manual or downloaded tutorials. > > When creating the end of the pipe, to create the top surface, the included manual say something like: > Choose Geometry->Create->Planar Surface and select the four lines that define the opening of the pipe ... [GiDlist] failing to mesh tutorial problem
Send by: Gerard Gorman Hi I have just checked the tutorials from the GID website at: http://gid.cimne.upc.es/support/su05.subst If you look at the Preprocess Tutorial 2, page 14, you can see in instruction 5 it says "Geometry CreatePlanar Surface". This is consistent, although decrepit as you pointed out, with the tutorial included with the software. I am confused - what do you mean by the other manual? Are there updated instructions somewhere else? Thanks for your help Gerard. Enrique Escolano wrote: > You are right, > > There are some small differences between the tutorial included in GiD and the user manual or downloaded tutorials. ... [GiDlist] failing to mesh tutorial problem
Send by: Enrique Escolano Yes, the 'other manual' I said is the printed 'User Manual' . This User Manual includes some of the related tutorials, and is updated to GiD 8. You can download a pdf version of this User Manual at: http://www.gidhome.com/support/su04 As soon as possible, we will update the 'tutorials' to be downloaded from our web (English and Spanish) and the 'GiD included tutorials' to be consistents with the 'User Manual'. Users can usually to follow also old tutorials, but some menus and windows can be a little different in other versions. Regards Enrique ----- Original Message ----- From: "Gerard Gorman" <... [GiDlist] failing to mesh tutorial problem
Send by: Gerard Gorman Happy now. I was/am just going through the usual newbie blues. Thanks again for your help. Cheers Gerard. Enrique Escolano wrote: > Yes, the 'other manual' I said is the printed 'User Manual' . > This User Manual includes some of the related tutorials, and is updated to GiD 8. > > You can download a pdf version of this User Manual at: http://www.gidhome.com/support/su04 > > As soon as possible, we will update the 'tutorials' to be downloaded from our web (English and Spanish) and the 'GiD included > tutorials' to be consistents with the 'User Manual'. ... [GiDlist] Postprocess VRML
Send by: Smith, Mark Is there a way or any plans to export post processing views in VRML or any other format so you can share the results and allow the model to be rotated showing the stress/temperature etc colours with the legend visible? Regards mark This message (including any attachments) contains confidential and/or proprietary information intended only for the addressee. Any unauthorized disclosure, copying, distribution or reliance on the contents of this information is strictly prohibited and may constitute a violation of law. If you are not the intended recipient, please notify the sender immediately by responding to this e-mail, and delete the message from your system. If you have any questions about this e-mail please notify the sender immediately. ... [GiDlist] Postprocess VRML
Send by: Miguel Pasenau Hi, ¿Have you tried the VRML export from the 'camera' icon on the icon bar? It exports the current view of the model (clipped by the window) including the legend and stream lines. Best regards Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Smith, Mark Enviado el: jueves, 28 de septiembre de 2006 18:38 Para: gidlist at gatxan.cimne.upc.edu... [GiDlist] {SPAM?} Reference Manual 8.0
Send by: Cristina Almeida Bueno e Silva Hello! This is a very easy question: I downloaded GiD version 8.0 and it says that the Reference Manual is included in the download. But I can´t find it! And on GiD website I couldn´t find an easy .pdf archive to download separately. Any ideas??? Thank you very much. Cristina. -- Cristina Almeida Bueno e Silva Mestranda em Eng. Civil - Universidade de Brasília - Brasil crisabs at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060928/9c4cf802/attachment.htm... [GiDlist] {SPAM?} Reference Manual 8.0
Send by: Gerard Gorman http://www.gidhome.com/support/su04.subst Cristina Almeida Bueno e Silva wrote: > Hello! > > This is a very easy question: > > I downloaded GiD version 8.0 and it says that the Reference Manual is > included in the download. But I can´t find it! And on GiD website I > couldn´t > find an easy .pdf archive to download separately. Any ideas??? > > Thank you very much. > > Cristina. > > [GiDlist] {SPAM?} Reference Manual 8.0
Send by: Enrique Escolano The "Reference Manual" is the help that GiD shows itself when you click the Help menu.
You can find all html files inside the GiD directory : "your gid directory"infoenhtml-version
Can open the file 'gid_toc.html' to follow its contents with any standar web browser ("Internet explorer, Firefox, etc)
Out web provide all documentation is under the "Support" topic:
If you want, you can also see this html manual online at http://www.gidhome.com/support/gid_toc
or download a pdf version (interesting for example to print this manual) at http://www.gidhome.com/support/su04...
[GiDlist] {SPAM?} Reference Manual 8.0
Send by: Cristina Almeida Bueno e Silva Thank you very much! Cristina. 2006/9/28, Enrique Escolano <escolano at cimne.upc.edu>: > > The "Reference Manual" is the help that GiD shows itself when you click > the Help menu. > You can find all html files inside the GiD directory : "your gid > directory"infoenhtml-version > Can open the file 'gid_toc.html' to follow its contents with any > standar web browser ("Internet explorer, Firefox, etc) > > Out web provide all documentation is under the "Support" topic: ... [GiDlist] Problems with unstructured meshes
Send by: Johane Bracamonte Mr. Abel: I will attach a .zip file with the codmed.gid model, the problem that we discused is presented in the 1859 node, the gid version that i'm using is the 8.0 and it was dowloaded from your website. The problem seems to be random and the model i'm sending you is not the same from my original consult. Thanks in advance. Johane Bracamonte -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20060928/544d36de/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: codmed.zip Type: application/zip Size: 79852 bytes Desc: not available Url : ... [GiDlist] Problems with unstructured meshes
Send by: Abel Coll Dear Johane,
We have found the problem you had with your model, and we have fixed the
bug, so in next beta or oficial versions GiD will work well.
In the other part, this problem appears only if you use Rfast mesher (see
preferences->meshing), and if you choose Rsurf mesher you will obtain a good
mesh.
Thank you for notifying this irregular behaviour.
Best regards,
ABEL
__________________________________________________________
Abel Coll Sans
CIMNE - International Center for Numerical Methods in Engineering
Office C2 - C1Building - Campus Nord UPC
Gran Capità s/n, 08034 Barcelona
Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17
<mailto:...
[GiDlist] Postprocess VRML
Send by: Smith, Mark Hi Miguel Thanks, I hadn't explored the camera tool :-( The legend exports but the values are omitted? Regards Mark Gid 7.7.7b win2000 -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] On Behalf Of Miguel Pasenau Sent: 28 September 2006 19:18 To: gidlist at gatxan.cimne.upc.edu Subject: RE: [GiDlist] Postprocess VRML Hi, ¿Have you tried the VRML export from the 'camera' icon on the icon bar? It exports the current view of the model (clipped by the window) including the legend and stream lines. Best regards Miguel -----Mensaje original----- De: ... {SPAM?} RE: [GiDlist] Postprocess VRML
Send by: Miguel Pasenau Yes, i've already noticed this curious behaviour. If you change the size of the window, or the resolution of the picture (in the File->PageSetup window) these labels appear. I'll check this. Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Smith, Mark Enviado el: viernes, 29 de septiembre de 2006 13:54 Para: gidlist at gatxan.cimne.upc.edu... [GiDlist] Postprocess VRML
Send by: Smith, Mark Miguel Update. The visibility of the legend seems to depend on which viewer you use? The Cosmo Player VRML Plugin from the NIST website showe the legend perfectly whereas the cortona one doesn't! mark -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] On Behalf Of Miguel Pasenau Sent: 29 September 2006 14:05 To: gidlist at gatxan.cimne.upc.edu Subject: RE: {SPAM?} RE: [GiDlist] Postprocess VRML Yes, i've already noticed this curious behaviour. If you change the size of the window, or the resolution of the picture (in the File->PageSetup window) these labels appear. I'll check this. Miguel -----Mensaje original----- De: ... [GiDlist] Postprocess VRML
Send by: Smith, Mark Hi Miguel Window size or resolution seems to have no effect. Is there a way of disabling the GiD logo as this seems to increase the size of the viewport rather than just the model and the legend ? Which font in utilities:preferencies:fonts sets the legend font/size? Regards mark -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] On Behalf Of Miguel Pasenau Sent: 29 September 2006 14:05 To: gidlist at gatxan.cimne.upc.edu... [GiDlist] Postprocess VRML
Send by: Miguel Pasenau On the right button select: View-->Hardcopy-->Options-->PrintLogo and answer no to the question. By the moment the font of the legend can not be changed, but shortly you will be able to change it, on the next version. Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Smith, Mark Enviado el: viernes, 29 de septiembre de 2006 18:16 Para: gidlist at gatxan.cimne.upc.edu... [GiDlist] sigsegv opening GID project
Send by: Gerard Gorman Hi
I used Import->Surface Mesh to read in an STL file and then saved it as
a GID project. However, when I try to reopen this file I get a
segmentation fault from GID (v8.0.2, Linux 32). Has anyone else seen
trouble like this?
It may not be relevant, but the original stl file is also quite large -
154M.
For what it is worth I have included an strace of the process.
Cheers
Gerard.
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.prb", O_RDONLY)
= -1 ENOENT (No such file or directory)
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.prb", O_RDONLY)
= -1 ENOENT (No such file or directory)
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.cnd", O_RDONLY)
= -1 ENOENT (No such file or directory)
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.cnd", O_RDONLY)
= -1 ENOENT (No such file or directory)
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.lin", O_RDONLY)
= -1 ENOENT (No such file or directory)
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.lin", O_RDONLY)
= -1 ENOENT (No such file or directory)
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.mat", O_RDONLY)
= -1 ENOENT (No such file or directory)
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.mat", O_RDONLY)
= -1 ENOENT (No such file or directory)
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.vv", O_RDONLY) = 24
[pid 15912] close(24) = 0
[pid 15912] open("/home/gormo/GID/shark-v2.gid/shark-v2.vv", O_RDONLY) = 24
[pid 15912] fstat64(24, {st_mode=S_IFREG|0664, st_size=468, ...}) = 0
[pid 15912] mmap2(NULL, 4096, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7bd1000
[pid 15912] read(24, "BeginZE /home/gormo/GID/shark-v2"..., 4096) = 468
[pid 15912] close(24) = 0
[pid 15912] munmap(0xb7bd1000, 4096) = 0
[pid 15912] open("/dev/zero", O_RDWR) = 24
[pid 15912] mmap2(NULL, 36864, PROT_READ|PROT_WRITE|PROT_EXEC,
MAP_PRIVATE, 24, 0) = 0x5af000
[pid 15912] close(24) = 0
[pid 15912] open("/proc/meminfo", O_RDONLY) = 24
[pid 15912] read(24, "MemTotal: 2075672 kB
MemFre"..., 1000) = 693
[pid 15912] close(24) = 0
[pid 15912] mlock(0xb71c2000, 4096) = 0
[pid 15912] ioctl(17, 0xc030465c, 0xbfd8a158) = 0
[pid 15912] mmap2(NULL, 4096, PROT_READ, MAP_SHARED, 18, 0x55ece) =
0xb7bd1000
[pid 15912] mlock(0xa9b7000, 4096) = 0
[pid 15912] ioctl(17, 0xc030465c, 0xbfd8a190) = 0
[pid 15912] mmap2(NULL, 4096, PROT_READ, MAP_SHARED, 18, 0x391dc) =
0xb7b6c000
[pid 15912] mlock(0xa9b8000, 4096) = 0
[pid 15912] ioctl(17, 0xc030465c, 0xbfd8a190) = 0
[pid 15912] mlock(0xa9b9000, 4096) = 0
[pid 15912] ioctl(17, 0xc030465c, 0xbfd8a190) = 0
[pid 15912] ioctl(18, 0xc0304627, 0xbfd8981c) = 0
[pid 15912] mmap2(NULL, 4194304, PROT_READ|PROT_WRITE, MAP_SHARED, 18,
0x1dcad) = 0xb635c000
[pid 15912] ioctl(17, 0xc0384657, 0xbfd89884) = 0
[pid 15912] open("/proc/meminfo", O_RDONLY) = 24
[pid 15912] read(24, "MemTotal: 2075672 kB
MemFre"..., 1000) = 693
[pid 15912] close(24) = 0
[pid 15912] brk(0xc5b6000) = 0xc5b6000
[pid 15912] mlock(0xa9ba000, 4096) = 0
[pid 15912] ioctl(17, 0xc030465c, 0xbfd8a190) = 0
[pid 15912] --- SIGSEGV (Segmentation fault) @ 0 (0) ---
Process 15912 detached
<... rt_sigsuspend resumed> ) = ? ERESTARTNOHAND (To be restarted)
--- SIGCHLD (Child exited) @ 0 (0) ---
wait4(-1, [{WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV}], WNOHANG,
{ru_utime={12, 36752}, ru_stime={3, 204200}, ...}) = 15912
wait4(-1, 0xbf83e4b8, WNOHANG, 0xbf83e470) = -1 ECHILD (No child processes)
sigreturn() = ? (mask now [INT CHLD])
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
write(17, "Segmentation fault
", 19Segmentation fault
) = 19
rt_sigprocmask(SIG_SETMASK, NULL, [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
read(16, "", 4096) = 0
_llseek(16, 0, [580], SEEK_CUR) = 0
ioctl(16, SNDCTL_TMR_TIMEBASE or TCGETS, 0xbf84c998) = -1 ENOTTY
(Inappropriate ioctl for device)
rt_sigprocmask(SIG_SETMASK, NULL, [], 8) = 0
rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
exit_group(139) = ?
...
[GiDlist] sigsegv opening GID project
Send by: Jorge Hi, I have just recreated the steps you describe here with the attached stl and could not get your results. May be it is related to your stl file contents. Is it possible to get your file (an ftp may be?)? Also it would help to know about your kernel version and distribution. best regards, Jorge On Sun, 2006-10-01 at 22:47 +0100, Gerard Gorman wrote: > Hi > > I used Import->Surface Mesh to read in an STL file and then saved it as > a GID project. However, when I try to reopen this file I get a > segmentation fault from GID (v8.0.2, Linux 32). Has anyone else seen > trouble like this? >... [GiDlist] sigsegv opening GID project
Send by: Gerard Gorman Hi Jorge Everything worked fine for the stl file you provided. I found that it was a bit hit and miss to reproduce the problem (I was trying a bit of cad repair using collapsing the deletion functions) but here finally I have this GID project saved using gid but which triggers a segmentation fault in gid when I attempt to open the project: http://amcg.ese.ic.ac.uk/~gormo/problem_gid_file.tar.gz In terms of details about my system that I'm running GID on: $ cat /proc/version Linux version 2.6.17-1.2187_FC5 (brewbuilder at hs20-bc2-2.build.redhat.com... [GiDlist] sigsegv opening GID project
Send by: Jorge Hi, now we can reproduce de bug. We are working on a solution. We'll let you know as soon as it gets solved. regards, Jorge On Tue, 2006-10-03 at 22:56 +0100, Gerard Gorman wrote: > Hi Jorge > > Everything worked fine for the stl file you provided. I found that it > was a bit hit and miss to reproduce the problem (I was trying a bit of > cad repair using collapsing the deletion functions) but here finally I > have this GID project saved using gid but which triggers a segmentation > fault in gid when I attempt to open the project: > > http://amcg.ese.ic.ac.uk/~gormo/problem_gid_file.tar.gz... [GiDlist] sigsegv opening GID project
Send by: Jorge Hello Gerard, we were trying to find why the file you provided was corrupt. Bellow is the list of surfaces for which the corruption is found. We think we need to try the original stl file and play with it in order to see where it gets corrupt during the cad repair operations. Now GiD (current development code) is able to read shark-v2.gid but with some holes because of the corruption we just mentioned. best regards, Jorge shark-v2.gid Error reading surfmesh 41: file is corrupt, contour line 9 is NULL Error reading surfmesh 59: file is corrupt, contour line 0 is NULL Error reading surfmesh 120: file is corrupt, contour line 13 is NULL Error reading surfmesh 196: file is corrupt, contour line 7 is NULL Error reading surfmesh 316: file is corrupt, contour line 0 is NULL Error reading surfmesh 322: file is corrupt, contour line 1 is NULL Error reading surfmesh 1070: file is corrupt, contour line 0 is NULL Error reading surfmesh 1123: file is corrupt, contour line 1 is NULL Error reading surfmesh 1124: file is corrupt, contour line 0 is NULL Error reading surfmesh 1184: file is corrupt, contour line 0 is NULL Error reading surfmesh 1356: file is corrupt, contour line 1 is NULL Error reading surfmesh 1522: file is corrupt, contour line 0 is NULL Error reading surfmesh 1540: file is corrupt, contour line 0 is NULL Error reading surfmesh 1550: file is corrupt, contour line 0 is NULL Error reading surfmesh 1558: file is corrupt, contour line 2 is NULL Error reading surfmesh 1979: file is corrupt, contour line 1 is NULL Error reading surfmesh 2082: file is corrupt, contour line 0 is NULL Error reading surfmesh 2111: file is corrupt, contour line 3 is NULL Error reading surfmesh 2122: file is corrupt, contour line 0 is NULL Error reading surfmesh 2180: file is corrupt, contour line 4 is NULL Error reading surfmesh 2193: file is corrupt, contour line 2 is NULL Error reading surfmesh 2197: file is corrupt, contour line 2 is NULL Error reading surfmesh 2200: file is corrupt, contour line 2 is NULL On Tue, 2006-10-03 at 22:56 +0100, Gerard Gorman wrote: >... [GiDlist] Internet retrieve
Send by: Calaon Andrea Dear all, I am trying to download some problemtypes from the web through GiD, but it seems it does not handle proxy settings automatically. Where is it possible to set the proxy address, user and pwd in the GiD files? Thanks Andrea Calaon R&D Mechanical Engineer Danieli & C - Breda Danieli Division V.le Fulvio Testi, 124 - 20092 Cinisello Balsamo - Italy Tel:+39.02.26245419 - Fax:+39.02.26245350 e-mail: a.calaon at danieli.it web: www.danieli.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20061003/c0fc6443/attachment.htm... [GiDlist] Internet retrieve
Send by: Enrique Escolano Internet retrieveProblemtypes are physically located at: ftp://gatxan.cimne.upc.es/pub/gidmodules/ It is an anonymous ftp server, it is not necessary a password. If you can't access directly from the GiD menu, try to use any ftp client. Maybe do you have some firewall? Regards Enrique ----- Original Message ----- From: Calaon Andrea To: gidlist at gatxan.cimne.upc.edu Sent: Tuesday, October 03, 2006 8:40 AM Subject: [GiDlist] Internet retrieve Dear all, I am trying to download some problemtypes from the web through GiD, but it seems it does not handle proxy settings automatically. Where is it possible to set the proxy address, user and pwd in the GiD files? Thanks Andrea Calaon R&D Mechanical Engineer Danieli & C - Breda Danieli Division V.le Fulvio Testi, 124 - 20092 Cinisello Balsamo - Italy Tel:+39.02.26245419 - Fax:+39.02.26245350 e-mail: ... [GiDlist] Internet retrieve
Send by: Calaon Andrea I managed to download the problem types from the web site. May be the firewall prevented the connection. Thanks Andrea Calaon R&D Mechanical Engineer Danieli & C - Breda Danieli Division V.le Fulvio Testi, 124 - 20092 Cinisello Balsamo - Italy Tel:+39.02.26245419 - Fax:+39.02.26245350 e-mail: a.calaon at danieli.it web: www.danieli.com ________________________________ From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] Disable/Enable menus
Send by: José Carlos UFMG/Brazil Dear friends,
I am using GID as graphical pre/pos-processor in the subject of my Doctor Thesis (UFMG-Brazil). So, I have a problem:
I create some menus using TclTk in InitGIDProject procedure, like shown below:
GidAddUserDataOptions "Análise mecânica" "GidOpenProblemData {Analise mecanica}" 6
At some time, depending on some configurations in DataProblem window, I need that menu (created above) has to be disabled (or enabled again) to avoid inconsistents possibilities on modeling. How can I do that?
I tried to use RemoveMenuOption / GidAddUserDataOptions, but it doesn't work in runtime (i.e. in procedures differents of InitGIDProject).
Thanks a lot.
José Carlos L. Ribeiro, M. Sc.
Civil Engineer
Doctorate in Structures Engineering
UFMG - Brazil
---------------------------------
O Yahoo! está de cara nova. Venha conferir!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] Postprocess VRML
Send by: Miguel Pasenau On the right button select: View-->Hardcopy-->Options-->PrintLogo and answer no to the question. By the moment the font of the legend can not be changed, but shortly you will be able to change it, on the next version, with the 'Comments font' combobox in the utilities-->preferences-->fonts window thanks Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Smith, Mark Enviado el: viernes, 29 de septiembre de 2006 18:16 Para: ... [GiDlist] Postprocess VRML
Send by: Smith, Mark Thanks Miguel. I've discovered that to get the legend values exported you need to set legends to opaque in the post processing options. Regards mark -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] On Behalf Of Miguel Pasenau Sent: 04 October 2006 13:33 To: gidlist at gatxan.cimne.upc.edu Subject: RE: [GiDlist] Postprocess VRML On the right button select: View-->Hardcopy-->Options-->PrintLogo and answer no to the question. By the moment the font of the legend can not be changed, but shortly you will be able to change it, on the next version. Miguel -----Mensaje original----- De: ... [GiDlist] Surface modelling
Send by: Smith, Mark Hi GiD team I'm very pleased with the surface modelling ability of gid but (there is always a but) I would like to suggest a feature that I would find very useful & hopefully you might think of developing it for future releases? I would like to impose a tangency condition where 2 surfaces meet/intersect. This is difficult to do manually as it requires the surfaces to be deleted the common edge to be modified & then the surfaces redefined. I'd like to select the surfaces and define a radius which blend 1 surface into the other. Maybe this should be possible using the tools:right buttons:geometry:edit:tangentnurbsSurface but most of the time gid crashes & exits without warning! Can you explain the use of the enter maximum angle to accept tangents? I'm using gid7.7.7b, is this fixed in version 8? Thanks in advance. Best regards mark This message (including any attachments) contains confidential and/or proprietary information intended only for the addressee. Any unauthorized disclosure, copying, distribution or reliance on the contents of this information is strictly prohibited and may constitute a violation of law. If you are not the intended recipient, please notify the sender immediately by responding to this e-mail, and delete the message from your system. If you have any questions about this e-mail please notify the sender immediately. ... [GiDlist] How to disable/enable menus in runtime
Send by: José Carlos UFMG/Brazil Dear friends,
I am using GID as graphical pre/pos-processor in the subject of my Doctor Thesys (UFMG-Brazil). So, I have a problem:
I created some menus using TclTk in InitGIDProject procedure, like shown below:
GidAddUserDataOptions "Análise mecânica" "GidOpenProblemData {Analise mecanica}" 6
Depending on any configurations in DataProblem window, I need that menu (created above) has to be disabled (or enabled again) to avoid inconsistent possibilities on modeling. How can I do that?
I tried to use RemoveMenuOption / GidAddUserDataOptions, but I have the feeling it doesn't work in runtime (i.e. in procedures different of InitGIDProject).
I need an urgent help. Thanks a lot.
José Carlos L. Ribeiro, M. Sc.
Civil Engineer
Doctorate in Structures Engineering
UFMG - Brazil
---------------------------------
Você quer respostas para suas perguntas? Ou você sabe muito e quer compartilhar seu conhecimento? Experimente o Yahoo! Respostas!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] How to disable/enable menus in runtime
Send by: Enrique Escolano Hello José Carlos,
This is a sample for GiD 8.x, because I'm using procedures like GiDMenu::*
(this menu procedures are already undocummented. See contents of the file /scripts/dev_kit.tcl of GiD)
Sample use:
test_create_menu
test_set_menu_state MyMenu MyOption disabled
or
test_set_menu_state MyMenu MyOption normal
#create a menu "MyMenu" and add an item "Myoption"
proc test_create_menu { } {
set menu_name MyMenu
set option_name MyOption
GiDMenu::Create $menu_name PRE
GiDMenu::InsertOption $menu_name $option_name 0 PRE [list WarnWin $option_name]
GiDMenu::UpdateMenus
}
#modify the menu state to "disabled" or "normal"
#sample use: test_set_menu_state "My Menu" "My option"
proc test_set_menu_state { menu_name option_name state } {
set i [GiDMenu::_FindIndex $menu_name PRE]
if { $i == -1 } return
set w .gid.menu
set top [winfo toplevel $w]
if { $top != ".gid" } {
set t $top
} else {
set t ""
}
set menuname $t.mm1.button$i
set position [lindex [split [GiDMenu::_FindOptionIndex $i $option_name PRE] ,] end]
if { $position != -1 } {
if { $state == "disabled" } {
ChangeMenuForegroundColor $menuname $position $::GidPriv(Color,DisabledForegroundMenu)
} else {
ChangeMenuForegroundColor $menuname $position "black"
}
$menuname entryconfigure $position -state $state
}
}
Regards
Enrique Escolano
----- Original Message -----
From: José Carlos UFMG/Brazil
To: ...
[GiDlist] type of the Result in Result block
Send by: Andrea Mordini Hello everybody, I would like to store as results 6 scalar values under the same result block. I don't want to use a matrix type because the combination of the values (Si, Sii, Siii) is meaningless. Is it possible? andrea -- --------------------------------------------------------------- Andrea Mordini VCE Holding GmbH Civil Engineer, Ph.D. Hadikgasse 60 Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria mordini at vce.at Fax: (+43 1) 893 86 71 http://www.andreamordini.com... [GiDlist] type of the Result in Result block
Send by: Andrea Mordini Hello everybody, I would like to store as results 6 scalar values under the same result block. I don't want to use a matrix type because the combination of the values (Si, Sii, Siii) is meaningless. Is it possible? andrea -- --------------------------------------------------------------- Andrea Mordini VCE Holding GmbH Civil Engineer, Ph.D. Hadikgasse 60 Phone: (+43 1) 897 53 39 1467 A-1140 Vienna - Austria mordini at vce.at Fax: (+43 1) 893 86 71 http://www.andreamordini.com... [GiDlist] type of the Result in Result block
Send by: Enrique Escolano As you said, you mustn't pack this 'n' scalar results, because they are not really a vector or matrix, are independent values. But you can use a trick to show them grouped in postprocess menus and windows: you can use // in the result name to be shown in menus/windows as a tree structure (like directory names) for example Result "parent//result 1" ... ... Result "parent//result 2" ... ... and so one Enrique Escolano ----- Original Message ----- From: "Andrea Mordini" <mordini at vce.at> To: <gidlist at gatxan.cimne.upc.es... [GiDlist] type of the Result in Result block
Send by: Miguel Pasenau Another way is to use the 'resultgroup' like this: ResultGroup "Your Analysis" 1 OnNodes ResultDescription "MyScalars//Scalar 1" Scalar ResultDescription "MyScalars//Scalar 2" Scalar ResultDescription "MyScalars//Scalar 3" Scalar ResultDescription "MyScalars//Scalar 4" Scalar Values 1 1.0 2.0 3.0 4.0 2 1.1 2.1 3.1 4.1 3 1.2 2.2 3.2 4.2 (...) End values Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] GiD 8 on OSX ?
Send by: Karl A. Fisher Is there any plans for a GiD 8 for the Mac platform. __________________________________________________________________ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 173 bytes Desc: not available Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20061025/b97bc239/attachment.bin [GiDlist] GiD 8 on OSX ?
Send by: Abel Coll We are working on it. As soon as it will be released we will let you know.
Regards,
ABEL
__________________________________________________________
Abel Coll Sans
CIMNE - International Center for Numerical Methods in Engineering
Office C2 - C1Building - Campus Nord UPC
Gran Capità s/n, 08034 Barcelona
Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17
<mailto:abelcs at cimne.upc.edu> abelcs at cimne.upc.edu
_________________________________________________________
_____
De: ...
[GiDlist] GiD 8 on OSX ?
Send by: gerard rio good news !! Le 30 oct. 06 à 11:21, Abel Coll a écrit : > We are working on it. As soon as it will be released we will let > you know. > > > > Regards, > > > > ABEL > > > > __________________________________________________________ > > Abel Coll Sans > > CIMNE - International Center for Numerical Methods in Engineering > > Office C2 - C1Building - Campus Nord UPC > > Gran Capità s/n, 08034 Barcelona ... [GiDlist] GiD 8 on OSX ?
Send by: Karl A. Fisher Thats great news. Intel or PPC ? On Oct 30, 2006, at 2:21 AM, Abel Coll wrote: > > We are working on it. As soon as it will be released we will let you > know. > > Regards, > > ABEL > > > __________________________________________________________ >... [GiDlist] opensees gid
Send by: srikanth Dear sir,
I had a problem in meshing a contact volume it is giving a
figplex error.My geometry is a 2 solid cylinders with 2 different materials.
do you have any document to show how to mesh contact volumes.
thanking you sir
Srikanth
IIT Kanpur
[GiDlist] opensees gid
Send by: Enrique Escolano Can you send the GiD model to test it? (compressed with a single extension: e.g .zip instead .gid.zip ) Enrique ----- Original Message ----- From: "srikanth" <srisri at iitk.ac.in> To: <gidlist at gatxan.cimne.upc.es> Sent: Thursday, November 16, 2006 8:00 AM Subject: [GiDlist] opensees gid > Dear sir, > I had a problem in meshing a contact volume it is giving a > figplex error.My geometry is a 2 solid cylinders with 2 different materials. >... [GiDlist] Streamlines
Send by: Gerhard Link Hello Gid-Team,
i want to visualize Streamlines on a mesh composed of quadratic bricks.
Do you plan to implement that? Currently only tets and triangles are
possible for that task
Is there a workaround?
Thanks
Gerhard
--
_/ _/_/ _/_/_/ Friedrich-Alexander-Universität Erlangen
_/ _/ _/ _/ Lehrstuhl für Sensorik
_/ _/ _/ Paul-Gordan-Str. 3-5, D-91052 Erlangen
_/ _/_/ _/_/_/
_/ _/ _/ Friedrich-Alexander University Erlangen
_/ _/ _/ _/ Department of Sensor Technology
_/_/_/ _/_/ _/_/_/ Paul-Gordan-Str. 3-5, D-91052 Erlangen
Gerhard Link, M.Sc.
email: ...
[GiDlist] Streamlines
Send by: Miguel Pasenau Hello Gerhard, We are planning to add streamlines for hexahedra, prisms and pyramids in a short term: if not for the next beta version, surely for the next next one. The only way around that comes to my mind is to convert the hexahedra into tetrahedra. Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Gerhard Link Enviado el: jueves, 16 de noviembre de 2006 9:43 Para: gidlist at gatxan.cimne.upc.edu... [GiDlist] Streamlines
Send by: Gerhard Link Hallo Now i remembered how to split elements, but sadly a 20 node brick can not be splitted. Is it possible to delete only all elements and create a tetra mesh out of the nodes? Gerhard Miguel Pasenau wrote: > Hello Gerhard, > We are planning to add streamlines for hexahedra, prisms and pyramids in a > short term: if not for the next beta version, surely for the next next one. > The only way around that comes to my mind is to convert the hexahedra into > tetrahedra. > > Miguel > > -----Mensaje original----- > De: gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] Streamlines
Send by: Miguel Pasenau Hallo, If the hexahedra could have 27 nodes then it would be easier, we don't have to create the middle face nodes. Then we can only use the vexter of the hexaedra to get the tetras and add to those tetras the middle edge nodes. Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Gerhard Link Enviado el: jueves, 16 de noviembre de 2006 19:04 Para: gidlist at gatxan.cimne.upc.edu... [GiDlist] Streamlines
Send by: Gerhard Link Warning: This message has had one or more attachments removed. Warning: Please read the "VirusWarning.txt" attachment(s) for more information. Hallo if you want to test splitting 20 node brick elements here is my mesh Thanks in advance Gerhard Miguel Pasenau wrote: > Hello Gerhard, > We are planning to add streamlines for hexahedra, prisms and pyramids in a > short term: if not for the next beta version, surely for the next next one. > The only way around that comes to my mind is to convert the hexahedra into > tetrahedra. > > Miguel > > -----Mensaje original----- ... [GiDlist] Streamlines
Send by: Miguel Pasenau I received this message: This is a message from the MailScanner E-Mail Virus Protection Service ---------------------------------------------------------------------- The original e-mail attachment "PESegQCFac3.post.msh" is on the list of unacceptable attachments for this site and has been replaced by this warning message. If you wish to receive a copy of the original attachment, please e-mail helpdesk and include the whole of this message in your request. Alternatively, you can call them, with the contents of this message to hand when you call. At Thu Nov 16 19:14:27 2006 the virus scanner said: Attempt to hide real filename extension in PESegQCFac3.post.msh Note to Help Desk: Look on the MailScanner in /var/spool/mailscanner/quarantine (message kAGIE7Hv028096). -- Postmaster The problem lies with the double extension ¿can you send me the mesh in a zip file, or a .tgz? or just with on extension Miguel -----Mensaje original----- De: ... [GiDlist] Streamlines
Send by: Gerhard Link Hi Miguel, now here come me zipped meshes. i included also a quadr mesh, because i need streamlines on that as well. Thanks Gerhard Miguel Pasenau wrote: > I received this message: > This is a message from the MailScanner E-Mail Virus Protection Service > ---------------------------------------------------------------------- > The original e-mail attachment "PESegQCFac3.post.msh" > is on the list of unacceptable attachments for this site and has been > replaced by this warning message. > > If you wish to receive a copy of the original attachment, please > e-mail helpdesk and include the whole of this message ... [GiDlist] [Problem] couldn´t map this point
Send by: MArtin Koske Hi, i try to make some mesh for ELMER and your programm worked very well. I need the mesh for some blood simulations that i do in a projekt in my univesity. but now i have a problem i never had before. By pressing the button "generate mesh" i get the message Couldn´t map this point ???? What can i do that it will work? i send a picture of my monitor and the problem file and hope you can help me! regards martin -------------- next part -------------- A non-text attachment was scrubbed... Name: Problem.rar Type: application/octet-stream Size: 470939 bytes Desc: not available Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20061117/c61effea/attachment.obj... [GiDlist] RE: [GiDlist] [Problem] couldn´t map this point
Send by: Abel Coll Hello Martin, We have detected a bug in the internal definition of the surface inside GiD, but we need to create the surface following the same steps as you to be able to correct it. Please, could you send us the initial mesh from which you have created the SurfMesh? Regards, ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 abelcs at cimne.upc.edu... [GiDlist] RE: [GiDlist] [Problem] couldn´t map this point
Send by: MArtin Koske hello Abel, this is the original mesh. it is an .stl file. i converted it with create -> surface mesh create -> Volume -> By contour Regards Martin -------------- next part -------------- A non-text attachment was scrubbed... Name: first9.rar Type: application/octet-stream Size: 226647 bytes Desc: not available Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20061121/8892d9d2/attachment.obj [GiDlist] RE: [GiDlist] [Problem] couldn´t map this point
Send by: Abel Coll Hi Martin, Finally we have found the bug and we have fixed it. Next beta and official versions won't have this problem no more. Thank you so much for notifying us this irregular behaviour. Regards, ABEL P.D: I have corrected the GiD model you sent, and GiD is able to mesh all its surfaces. If you want it, just send me an e-mail and I will send it to you. __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 abelcs at cimne.upc.edu... [GiDlist] RE: [GiDlist] [Problem] couldn´t map this point
Send by: MArtin Koske Hi Abel, can you send me this corrected gid model. thanks for reparing it. regards Martin Zitat von Abel Coll <abelcs at cimne.upc.edu>: > Hi Martin, > > Finally we have found the bug and we have fixed it. Next beta and official > versions won't have this problem no more. > > Thank you so much for notifying us this irregular behaviour. > > Regards, > > ABEL > > P.D: I have corrected the GiD model you sent, and GiD is able to mesh all ... [GiDlist] RE: [GiDlist] [Problem] couldn´t map this point
Send by: Abel Coll Here you are. ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 abelcs at cimne.upc.edu _________________________________________________________ -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] Problem: parallel lines
Send by: Daniel Pollig Hi! I want to make a 3D model of a pig. I use 2D CT scans to portray thorax, lung, ... with NURBS lines. Every scan is moved to a special z coordinate. Then I want to use the "parallel lines" command to make NURBS surfaces out of the NURBS lines which are obviously parallel. The command always finishs with "Failed". I also tried it with normal lines and polylines but it doesn't do it. Is there perhaps a bug in this function or do I have to do something special with the lines before(make the same number of knots at each line) ? I tried many things yet but nothing helps. Thanks. [GiDlist] Problem: parallel lines
Send by: Ramon Ribó Hello,
As an alternative to creating the model with GiD, you can
create the model in a CAD like Rhino:
http://www.rhino3d.com/cad.htm
create the surfaces, and import them into GiD in order to
generate the mesh.
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com ramsan at compassis.com
c/ Tuset, 8 7-2 tel. +34 93 218 19 89
08006 Barcelona, Spain fax. +34 93 396 97 46
En Mon, 20 Nov 2006 13:22:47 +0100, Daniel Pollig <...
[GiDlist] Problem: parallel lines
Send by: Enrique Escolano Can you send us a GiD model with your "parallel NUBS lines"? in order to check the GiD "by parallel lines" surface creation function. Enrique ----- Original Message ----- From: "Ramon Ribó" <ramsan at compassis.com> To: <gidlist at gatxan.cimne.upc.edu> Sent: Monday, November 20, 2006 2:17 PM Subject: Re: [GiDlist] Problem: parallel lines > > Hello, > > As an alternative to creating the model with GiD, you can > create the model in a CAD like Rhino: ... [GiDlist] List of commands for use in the *.bas file
Send by: Rodrigo Rossi Hi everyone, I am a new user of the GID software and I would like to know where I can find an explained list of the commands that I can use in the *.bas file. Thanks!! [GiDlist] List of commands for use in the *.bas file
Send by: Enrique Escolano Go to GiD help (menu GiD-Help, or open the index.html file with a web browser) and read the reference manual about Customization - Template file. Enrique Escolano ----- Original Message ----- From: "Rodrigo Rossi" <rrossi at ucs.br> To: <gidlist at gatxan.cimne.upc.es> Sent: Monday, November 20, 2006 5:00 PM Subject: [GiDlist] List of commands for use in the *.bas file > > Hi everyone, > > I am a new user of the GID software and I would like to know where I can ... [GiDlist] Problem: parallel lines
Send by: Daniel.Pollig at rwth-aachen.de Can you send us a GiD model with your "parallel NUBS lines"? in order to check the GiD "by parallel lines" surface creation function. Enrique ----- Original Message ----- From: "Ramon Ribó" <ramsan at compassis.com> To: <gidlist at gatxan.cimne.upc.edu> Sent: Monday, November 20, 2006 2:17 PM Subject: Re: [GiDlist] Problem: parallel lines > > Hello, > > As an alternative to creating the model with GiD, you can >... [GiDlist] Problem: parallel lines
Send by: Enrique Escolano The group of lines of a surface to be created "by parallel lines" must be a group of "open" curves
You have several "closed" surfaces: the outer and inner cylinder walls, and the inner holes.
In order to create your required surfaces with GiD my advice is:
1 - Repair your model (utilities repair),
2 - Delete unused points (geometry delete points - select all points)
3 - Divide all closed curves in two parts (geometry-edit-divide-lines-numdivisions 2 and select all lines)
4 - Force neighbor lines to be tangents in the commo point. (geometry-edit-lines operations-force to be tangent-45 º - select all lines)
5 - Try to create semi-cilindric surfaces by paralel lines
5.1 - Divide each "pseudo-circumference" to have near begin-end points in the group of lines that define each semi-cylinder:
(geometry-edit-divide-lines-near point- select a point and select the line to divide)
5.2 - Remove points joining lines where are undesired
(gemetry-edit-collapse points - select the points)
5.3 - Create Surfaces by parallel lines (geometry-create-NURBS surface-parallel lines and select the group of lines)
I attach your model doing this process for some surfaces, but there is a several inner holes surfaces to do.
I attach also an image of my modified GiD model
Note: some inner holes can intersect with the external boundary surfaces: the gray pipe intersect the blue surface !!
----- Original Message -----
From: <...
[GiDlist] airfoil mesh
Send by: Benjamin Sanderse Hello all, I just started some time ago meshing with GiD. I just have a simple airfoil (2D) in a circular domain. I want GiD to create a C or O-grid for my geometry. I tried several possibilities, but I could not find a way to generate a good airfoil mesh. My mesh is always very refined at the leading and trailing edge, but misses refinement near the surface and in the wake. As wing and airfoil meshing must be a common practice I am wondering if anybody could help me with this. For convenience I attached my geometry as .gid file. Thank you so much, Benjamin -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20061121/52e95e94/attachment.htm... [GiDlist] Quadratic and linear elements
Send by: Jose Munoz Hello all, Is it possible to combine linear and quadratic elements in the same model? Many thanks, Jose [GiDlist] Quadratic and linear elements
Send by: Abel Coll Hello Jose,
By the moment this is not possible using GiD. The whole model must be linear
or quadratic.
Regards,
ABEL
__________________________________________________________
Abel Coll Sans
CIMNE - International Center for Numerical Methods in Engineering
Office C2 - C1Building - Campus Nord UPC
Gran Capità s/n, 08034 Barcelona
Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17
abelcs at cimne.upc.edu
_________________________________________________________
-----Mensaje original-----
De: gidlist-admin at gatxan.cimne.upc.edu...
[GiDlist] Quadratic and linear elements
Send by: Miguel Pasenau Hello, In postproces yes, it is posible to mix linear and quadratic elements, but in preprocess, in the mesh generation the elements are restricted to have the same order: all elements should be linear or quadratic. Hope it helps, Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Jose Munoz Enviado el: miércoles, 22 de noviembre de 2006 9:19 Para: gidlist at gatxan.cimne.upc.edu... [GiDlist] airfoil mesh
Send by: Abel Coll Hello Benjamin, To refine the mesh near any geometrical entity you must assign a prescribed size of the mesh to the entity (Mesh->Unstructured->Assign sizes on ). I recommend you to do the meshing tutorials available in the web site (http://www.gidhome.com/support/su05.subst) to be able to take advantage of all the GiD meshing possibilities. Regards, ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 <mailto:... [GiDlist] airfoil mesh
Send by: Benjamin Sanderse Hello, I did the tutorials and I prescribed the size of the mesh at the boundary of the airfoil. However, that does not give me the expected result: the mesh near the leading and trailing edge is still much finer, and the elements close to the surface look quite bad (in terms of aspect ratio and corner angles). I tried now to use structured elements instead, but somehow that only works if your surface is the topological equivalent of a rectangle...so that means that I will never be able to create a structured mesh in 2D inbetween an airfoil surface and a boundary?? Sounds strange to me. Benjamin On 11/22/06, Abel Coll <abelcs at cimne.upc.edu... [GiDlist] airfoil mesh
Send by: Abel Coll Hi,
In relation with the quality of the elements, if your meshes are obtained
using Rfast mesher, you can set Rsurf mesher (in
Preferences->meshing->Surface mesher) and probably the elements would be
better.
ABEL
__________________________________________________________
Abel Coll Sans
CIMNE - International Center for Numerical Methods in Engineering
Office C2 - C1Building - Campus Nord UPC
Gran Capità s/n, 08034 Barcelona
Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17
<mailto:abelcs at cimne.upc.edu...
[GiDlist] airfoil mesh
Send by: Benjamin Sanderse Hello, Is it possible to make a transition from an structured quadrilateral mesh (boundary layer) to an unstructured quadrilateral mesh (far field)? I tried this, but I get the following error: Quadrilaterals cannot be meshed. All contour lines must have an even number of sides I even tried it with a simple example of two rectangles that have one side in common, and it doesn't work to put structured quads in the first and unstructured in the second. Please help... Thank you, Benjamin ----- Original Message ----- From: Abel Coll To: gidlist at gatxan.cimne.upc.edu... [GiDlist] airfoil mesh
Send by: Enrique Escolano As said the error message: "Quadrilaterals cannot be meshed. All contour lines must have an even number of sides" You musn't assing an uneven number of divisions to the structured sides (when are connected to the unstructured quadrilaterals). This is because a subdivision algorithm is used for unstructured quadrilaterals, then the number of subdivisions of its boundary lines must be multiple of 2. If you don't assign manually the number of divisions, GiD automatically generate an even number of sides for neighbor entities. In any case, unstructured quadrilaterals generated by GiD, in general, doesn't have high shape quality. It's more recommended to use unstructured triangles. Enrique ----- Original Message ----- From: Benjamin Sanderse To: ... [GiDlist] airfoil mesh
Send by: Benjamin Sanderse Ok, I see. Problem is that my code needs quads... ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.edu Sent: Friday, November 24, 2006 4:36 PM Subject: Re: [GiDlist] airfoil mesh As said the error message: "Quadrilaterals cannot be meshed. All contour lines must have an even number of sides" You musn't assing an uneven number of divisions to the structured sides (when are connected to the unstructured quadrilaterals). This is because a subdivision algorithm is used for unstructured quadrilaterals, then the number of subdivisions of its boundary lines must be multiple of 2. If you don't assign manually the number of divisions, GiD automatically generate an even number of sides for neighbor entities. In any case, unstructured quadrilaterals generated by GiD, in general, doesn't have high shape quality. It's more recommended to use unstructured triangles. Enrique ----- Original Message ----- From: Benjamin Sanderse To: ... [GiDlist] airfoil mesh
Send by: Smith, Mark Hi Benjamin in utilities:preferences:meshing: set automatic correct sizes to none & see if this helps this will prevent automatic refinement near small features. regards mark ________________________________ From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] On Behalf Of Benjamin Sanderse Sent: 22 November 2006 14:54 To: gidlist at gatxan.cimne.upc.edu Subject: Re: [GiDlist] airfoil mesh Hello, I did the tutorials and I prescribed the size of the mesh at the boundary of the airfoil. However, that does not give me the expected result: the mesh near the leading and trailing edge is still much finer, and the elements close to the surface look quite bad (in terms of aspect ratio and corner angles). I tried now to use structured elements instead, but somehow that only works if your surface is the topological equivalent of a rectangle...so that means that I will never be able to create a structured mesh in 2D inbetween an airfoil surface and a boundary?? Sounds strange to me. Benjamin On 11/22/06, Abel Coll <... [GiDlist] airfoil mesh
Send by: Benjamin Sanderse Hi, Thanks for your answer. Unfortunately it doesn't really help; in fact the mesh has become worse (very strange gradient in size from leading edge to halfway..). Benjamin ----- Original Message ----- From: Smith, Mark To: gidlist at gatxan.cimne.upc.edu Sent: Wednesday, November 22, 2006 11:07 AM Subject: RE: [GiDlist] airfoil mesh Hi Benjamin in utilities:preferences:meshing: set automatic correct sizes to none & see if this helps this will prevent automatic refinement near small features. regards mark ------------------------------------------------------------------------------ From: ... [GiDlist] airfoil mesh
Send by: Ramon Ribó Hi, If you want to create a structured mesh layer around the airfoil, just copy the lines that define it using the offset function. Then, apply structured mesh in the new region created and unstructured mesh to the rest. Regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Tuset, 8 7-2 tel. +34 93 218 19 89 08006 Barcelona, Spain fax. +34 93 396 97 46 En Wed, 22 Nov 2006 18:17:30 +0100, Benjamin Sanderse <bsanderse at gmail.com... [GiDlist] Two layers assembled
Send by: Isabel Gil Hello Gid's users, I have a question about how I must work when I have two different layers but which are assembled. I must say that is a simple case in order to know the proper way to work. I create the first layer (a 3D cube) and I create its volume, as it is said in Gid manual. Later, I create the second layer which is another 3D cube and, again, I create its volume. When I show these two layers and I mesh it, the face shared by the two cubes contains the double of nodes (ones for the first layer and others for the second one). What I really want to get is to have only a series of nodes in that face. I am doing something wrong so, could you give me any advice? Thanks in advance and best regards Isa ... [GiDlist] Two layers assembled
Send by: Julian Mindel Hi Isabel,
I am not a GiD developer, but my guess is you might have
duplicated entities, meaning each volume has its own face even though
they should be sharing one. When GiD meshes the volumes, it doesnt
"see" the sharing of the face, and therefore creates two independent
meshes. My idea would be to try and collapse the model (Utilities ->
Collapse) and then try meshing again. This should solve the problem and
really make the volumes share the face. Tell me if it works.
Best wishes,
Julian
Isabel Gil wrote:
> Hello Gid's users,
>
> I have a question about how I must work when I have two different
...
[GiDlist] Two layers assembled
Send by: Isabel Gil Hi Julian, First of all thank-you very much for your answer, it has worked properly. Thank-you very much. Now, the two volumes share the face and I get the right number of nodes. But now I have a new problem: I can find the command (Utilities->Collapse) in version 7.2 for Windows but I cannot find this command in version 8.0.2 for Windows, could you say to me where it is?, perhaps it is called in another way and I am not able to find it in the new version. I must use version 8.0.2 instead of 7.2 because the former allows me to use the semistructured volume in order to do the mesh and version 7.2 only permits to mesh volumes in a structured mode if I use hexahedra elements, which are the only ones I can use because my computational program only deals with them. Thanks and best regards Isa Julian Mindel wrote: >... [GiDlist] Two layers assembled
Send by: Isabel Gil Hi again Julian and Gid's users, I have just discovered where the collapse option is in the new version 8.0.2, it is in (Geometry->Edit->Collapse). Sorry for having sent the previous e-mail asking for this subject. Again, thanks Julian for giving me this trick. Best regards Isa Isabel Gil wrote: > Hi Julian, > > First of all thank-you very much for your answer, it has worked > properly. Thank-you very much. Now, the two volumes share the face and > I get the right number of nodes. > > But now I have a new problem: > I can find the command (Utilities->Collapse) in version 7.2 for ... [GiDlist] Collapse model
Send by: Smith, Mark Win2000 sp4 GiD 7.7.7b Hi GiD team I have a surface model which when I do a collapse model completely disappears, this occurs irrespective of the import tolerance setting I define in preferences? What am I doing wrong? Thanks in advance mark This message (including any attachments) contains confidential and/or proprietary information intended only for the addressee. Any unauthorized disclosure, copying, distribution or reliance on the contents of this information is strictly prohibited and may constitute a violation of law. If you are not the intended recipient, please notify the sender immediately by responding to this e-mail, and delete the message from your system. If you have any questions about this e-mail please notify the sender immediately. ... [GiDlist] Collapse model
Send by: Enrique Escolano Hi Mark, Maybe this problem is solved in more recent 8.0.2 version, Can you send us this model to test it? (you can send it directly to escolano at cimne.upc.es to avoid to send to all GiDlist users) Enrique ----- Original Message ----- From: "Smith, Mark" <Mark.Smith at linx.co.uk> To: <gidlist at gatxan.cimne.upc.edu> Sent: Tuesday, November 28, 2006 1:52 PM Subject: [GiDlist] Collapse model > Win2000 sp4 GiD 7.7.7b ... [GiDlist] next problem with loading an stl file
Send by: MArtin Koske hello, i import an .stl file and used the function geometry -> create -> surface mesh and than this error message came Error: element 1 has two or more adyacent elements at the same edge -> elem 10933 and elem 10538. Cannot continue. this is the first time by using this function that this error message came! i send you the stl file that you can check what the problem is. maybe it is a bug again? Hope you can help me again regards Martin -------------- next part -------------- A non-text attachment was scrubbed... Name: first12.rar Type: application/octet-stream Size: 291339 bytes Desc: not available Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20061128/425fb3cd/attachment.obj... [GiDlist] next problem with loading an stl file
Send by: Abel Coll Hello Martin, We are working on it. As soon as we fix the problem we will let you know. Regards, ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 abelcs at cimne.upc.edu _________________________________________________________ -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu... [GiDlist] using USE_CONST in gidpost
Send by: Daniel Marceau Hi, An error occured when the USE_CONST is enable to compile the library. The problem is a bad usage of the preprocessor in the declaration of a non const array at line 110 of gidpost.cpp. The GP_CONST should be removed such as: static char buffer[255]; The message obtained during compilation is: g++ -c -O2 -W -funroll-loops -DUSE_CONST -I../source -I.. -o release/gidpost.o ../source/gidpost.cpp ../source/gidpost.cpp: In function `const char* GetResultTypeName(GiD_ResultType, unsigned int)': ../source/gidpost.cpp:110: error: uninitialized const `buffer' ../source/gidpost.cpp:114: error: invalid conversion from `const char*' to ` char*' ../source/gidpost.cpp:115: error: invalid conversion from `const char*' to ` char*' make: *** [release/gidpost.o] Error 1 What is your opinion about this situation. Thanks Daniel Marceau ___________________________________________ Daniel Marceau, Ph.D., ing. Professeur Directeur du REGroupement ALuminium (REGAL) Département des sciences appliquées Université du Québec à Chicoutimi ... [GiDlist] using USE_CONST in gidpost
Send by: Jorge Hi, On Tue, 2006-11-28 at 14:09 -0500, Daniel Marceau wrote: > Hi, > > An error occured when the USE_CONST is enable to compile the library. The > problem is a bad usage of the preprocessor in the declaration of a non const > array at line 110 of gidpost.cpp. The GP_CONST should be removed such as: > > static char buffer[255]; > > The message obtained during compilation is: > > g++ -c -O2 -W -funroll-loops -DUSE_CONST -I../source -I.. -o > release/gidpost.o ../source/gidpost.cpp > ../source/gidpost.cpp: In function `const char* ... [GiDlist] Does the "Copy & Paste command" exist?
Send by: Isabel Gil Hi Gid's users!! I would like to ask you a simple question. I have a simple surface (a 2D square) and I would like to copy it and paste it wherever, inside my worksheet. The only command I have found has been the (Utilities->Copy), but this one doesn't do what I am looking for; perhaps I don't fill in the text fields in the proper way or this isn't the function I need to do what I would like to. Thanks in advance for any advice and best regards Isa -- María Isabel Gil Lorente LITEC - Laboratorio en Tecnologías de la Combustión. CSIC/DGA/UZ C/ María de Luna 10, 50018 - Zaragoza / SPAIN Tel : (+34) 976 716461 e-mail: ... [GiDlist] Does the "Copy & Paste command" exist?
Send by: Martin Meiler Hi Isa, the Utilities->Copy (or Ctrl+C) command is the correct one. You have to specify the following to copy a 2D square Entities type: Surfaces Transformation: Translation Now you have to define a displacement vector by two coordinates First point: x1 y1 z1 Second point: x2 y2 z2 Then you habe to press Select and select the surface and afterwards finish the selection process by pressing Escape. Then everything should be done. Best regards Martin Isabel Gil wrote: > Hi Gid's users!! > > I would like to ask you a simple question. > > I have a simple surface (a 2D square) and I would like to copy it and ... [GiDlist] Does the "Copy & Paste command" exist?
Send by: Isabel Gil Thank-you very much. I didn't notice that I had selected the text field:"Do extrude: surfaces" I turn it off and everything works properly. Again thanks Isa Martin Meiler wrote: > Hi Isa, > > the Utilities->Copy (or Ctrl+C) command is the correct one. > > You have to specify the following to copy a 2D square > Entities type: Surfaces > Transformation: Translation > > Now you have to define a displacement vector by two coordinates > > First point: x1 y1 z1 > Second point: x2 y2 z2 > > Then you habe to press Select and select the surface and afterwards ... [GiDlist] does anyone has this problem in Gid 8?
Send by: Franco Giuggioloni Hello , I have this question since you are taking about Copy and Paste I`m using Gid 8 for Linux and when I use Copy or Move command I have this problem; Suppose I want to move (or copy) a surface in only one direction, If I select the same point for the first and second in the Move/Copy window and I change only one coordinate for the second point , I must erase the point designation (number). If I don`t erase it, the surface (or line,point) won`t move. Is this the correct procedure? It`s not a very important problem but it doesn`t exist in Gid 7, for example best regards Franco Giuggioloni fgiuggioloni at iua.edu.ar... [GiDlist] does anyone has this problem in Gid 8?
Send by: Martin Meiler Hi Franco, this bug occours in gid 7.7.7b as well as in your gid8 release. The problem seems to be, that the point nr. overrides the coordinates, that you enter. This is for sure a bug since the point number should be deleted whenever a coordinate has changed, since then the point definition does not match the given coordinates any more. So your procedure is a good workaround for this bug. I always set point 1 to 0,0,0 and enter the direction to which to copy or move the refering entity by point 2 definition. This works best for me. best regards Martin Franco Giuggioloni wrote: > Hello , I have this question since you are taking about Copy and Paste ... [GiDlist] does anyone has this problem in Gid 8?
Send by: Smith, Mark I think you'll find it does in 7.7.7b , if you don't erase the point id number but just change the coordinates nothing seems to happen and the coordinates revert to the point with that id. I'd like to see improvements to 1) copy & move rotate where instead of defining the angle you define the rotation axis and a start & end position for one point. 2) When generating a circle you have to specify a radius & cannot just select an existing point for the circle to go throuh, 3) generating an arc by selecting 2 end points and a radius. 4) generate a line at a tangent to a curve at a point of a given length. You can do all these thing in a round about manner but it would be nice to do it easily I've also noticed that sometimes when I select to view the right button tool bars the working space grays out & noting I do can bring it back so I have to shut down & start again? Regards mark -----Original Message----- From: ... [GiDlist] Gid crashes in importing hand-made-text .msh file
Send by: HEMMI, Shigeru (CTC) Hello gid team,
I encounterd a Gid crash if I import my hand made text .msh file.
A simple example is as follows:
PS C:examples> cat InvalidHex8.msh
MESH dimension 3 ElemType Hexahedra Nnode 8
Coordinates
1 0.0E-2 0.0E-2 0.0E-2
2 2.0E-2 0.0E-2 0.0E-2
3 2.0E-2 1.5E-2 0.0E-2
4 0.0E-2 1.5E-2 0.0E-2
5 0.0E-2 0.0E-2 0.8E-2
6 2.0E-2 0.0E-2 0.8E-2
7 2.0E-2 1.5E-2 0.8E-2
8 0.0E-2 1.5E-2 0.8E-2
end coordinates
Elements
11 1 2 3 4 5 6 7 108
end elements
Note that node 108 is not defined in the .msh file,
i.e., this .msh file is invalid.
Thus it is OK if simply importing fails, but
crashing is not welcomed.
Regards,
--
HEMMI, Shigeru
ITOCHU Techno-Solutions Corporation
** Please NOTE **
Company name changed from CRC since Oct. 1 2006.
The abbreviated name of new company is CTC.
...
[GiDlist] Gid crashes in importing hand-made-text .msh file
Send by: Miguel Pasenau Hello, thanks for the bug report. It is corrected for the next version. Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de HEMMI, Shigeru (CTC) Enviado el: miércoles, 29 de noviembre de 2006 3:53 Para: gidlist at gatxan.cimne.upc.es Asunto: [GiDlist] Gid crashes in importing hand-made-text .msh file Hello gid team, I encounterd a Gid crash if I import my hand made text .msh file. A simple example is as follows: PS C:examples> cat InvalidHex8.msh MESH dimension 3 ElemType Hexahedra Nnode 8 Coordinates 1 0.0E-2 0.0E-2 0.0E-2 2 2.0E-2 0.0E-2 0.0E-2 3 2.0E-2 1.5E-2 0.0E-2 4 0.0E-2 1.5E-2 0.0E-2 5 0.0E-2 0.0E-2 0.8E-2 6 2.0E-2 0.0E-2 0.8E-2 7 2.0E-2 1.5E-2 0.8E-2 8 0.0E-2 1.5E-2 0.8E-2 end coordinates Elements 11 1 2 3 4 5 6 7 108 end elements Note that node 108 is not defined in the .msh file, i.e., this .msh file is invalid. Thus it is OK if simply importing fails, but crashing is not welcomed. Regards, -- HEMMI, Shigeru ITOCHU Techno-Solutions Corporation ** Please NOTE ** Company name changed from CRC since Oct. 1 2006. The abbreviated name of new company is CTC. _______________________________________________ GiDlist mailing list ... [GiDlist] Displaying external MS-DOS window
Send by: Rodrigo Rossi Hi Gid user´s I am developing a FEA code that will use GID as pre and pos-processor. In fact it is already working properly. The integration of the pre-pos is made by the Calculate command that write some archives and then executes a *.bat archive (inside this archive there is a instruction that calls my program call %3SOC.exe %2 %1), as the usual. For some reason the GID hides the MS-DOS execution window of my program. I would like to see this DOS window. Is there someone that knows how can I display this DOS window? Thanks Rossi ---------------------------------------------------- Rodrigo Rossi, Dr. Eng. Mec. Departamento de Engenharia Mecânica - Bloco D Universidade de Caxias do Sul 95001-970 - C.P. 1352 - Caxias do Sul - RS Fone: 0xx54 3218 2100 ramal 2802 Fax: 0xx54 3218 2168 <... [GiDlist] Displaying external MS-DOS window
Send by: Enrique Escolano Hello, We don't like the related DOS window, it's ugly. You can declare in your .bat file a filename where your program will write some process information. must include at the begin of the .bat problemtype file some like this: rem OutputFile: %2\%1.out ... %3yoursolver.exe %1.dat where %1is replaced by your model name (without path and any extension), and %2 is the model path Your program can write this user-interesting information in a <modelname>.out file, and GiD will show its contents in a window if the user go to menu Calculate->View process info... You can also declare an error file that your program can fill with some information if something is wrong during the calculation, then GiD will show this message error. rem ErrorFile: %2\%1.err Read GiD help about customization, Executing an external process. Note 1: if your program is not able to write this "process information" to a file, can redirect its standard output to a file with ">" %3yoursolver.exe %1.dat > %2\%1.err but the operating system probably don't fill this file until the process finish. Note 2: if you are directly written to a file instead to the stdout, remember to call sometimes some flush function, to force the operating system to flush the pending buffered data to the output file. Regards Enrique Escolano ----- Original Message ----- From: Rodrigo Rossi To: ... [GiDlist] Displaying external MS-DOS window
Send by: Miguel Pasenau Hello, In the directory where GiD is installed, for instance c:/Program Files/GiD/GiD 8.0.2, there is a program called command.exe which emulates the ms-dos command line interpreter but without the window. If you want to see the DOS window, just rename this program and GiD will use the ms windows dos interpreter. Best regards Miguel _____ De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Rodrigo Rossi Enviado el: jueves, 30 de noviembre de 2006 13:07 Para: ... [GiDlist] What is the word "flavia"?
Send by: HEMMI, Shigeru Dear GiD team, Just for my curiosity, let me know the meaning of the word "flavia". Is it a Spanish word? I was not able to find "flavia" in on-line web dictionary like Allwords.com. Regards, -- HEMMI, Shigeru ITOCHU Techno-Solutions Corporation, Japan ** Please NOTE ** Company name changed from CRC since Oct. 1 2006. The abbreviated name of new company is CTC. [GiDlist] What is the word "flavia"?
Send by: Miguel Pasenau Hello, The Word Flavia is not a spanish Word. It comes from a previous developed postprocessor, prior to GiD. The word stands for FLuid Analyzer and VIsuAlizer. This program was developed in fortran on silicon graphics using the graphics library PHIGS. Then it was written in C, ported to Linux, Sun, HP, ms-dos and ms windows 3.11, and used the graphics library GL on silicon graphics (which, after a couple of years, became OpenGL) and VOGL (Very Ordinary Graphics Library written by Eric H. Echidna) for the rest. The name changed to SOLAVIA: SOLid Analizer and VIsuAlizer. Initially the postprocess file format accepted by GiD was the same of Flavia and Solavia, and therefore the extension .flavia.msh and .flavia.res. Afterwards these extensions were changed to the more general .post.msh and .post.res, but for backward compatibility both are accepted. Flavia, feminine of Flavio, are Latin and Italian forenames too. Best regards Miguel -----Mensaje original----- De: ... [GiDlist] What is the word "flavia"?
Send by: HEMMI, Shigeru Thank you very much for responding to my question. Miguel Pasenau wrote: > Hello, > The Word Flavia is not a spanish Word. It comes from a previous developed > postprocessor, prior to GiD. The word stands for FLuid Analyzer and (Snip) -- HEMMI, Shigeru ITOCHU Techno-Solutions Corporation [GiDlist] Format export
Send by: Isabel Gil Hi Gid Team! I would like to ask a question about the format supported by GID. When I create my project in GID and I want to export it in one of these two fomats: ".msh" and/or ".unv", the only way is to use the option "Write calculation file" in Files(having created a problem type to say how to write this file), isn't it? Or perhaps is there a more direct way? Thanks in advance and best regards Isa [GiDlist] node numbering
Send by: dollarbulldog Dear GiD Team Now I am coding a v.8 template file to match with a BEM solver named BEMECH (X.-W. Gao and T.G. Davies, 2000). The important thing is that set of boundary nodes must be ordered before starting of internal nodes (if any). I 've found that mesh generator does not follow this rule by default. Does GiD provide such feature to generate a set of boundary node before that of internal node? Thank you. Sincerely adisorn o. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20061210/3de67034/attachment.htm... [GiDlist] node numbering
Send by: Enrique Escolano You can't directly force this node's order in GiD, but you can assign some condition to mark the boundary nodes .
For example define in your problemtype some condition to be applied on 3D models over surfaces in geometry,
and transfered over nodes in the mesh.
Then you can write your calculation file as you need with the .bas file
Read GiD help about customization.
Anoter trick is to use the 'AfterMeshGeneration' Tcl-event, automatically raised from GiD when generating a mesh.
You problemtype can define this Tcl procedure, with this prototype:
proc AfterMeshGeneration { fail } {
...body...
}
Then you can write a GiD ASCII mesh file, with your own node numeration,and read it again instead the current mesh.
To ask GiD from tcl you must use the GiD_Info Tcl command, like this:
set nodes [GiD_Info mesh Nodes]
set tetraedra [GiD_Info mesh Elements Tetrahedra]
Read also help about Tcl/Tk extension
Regards
Enrique Escolano
----- Original Message -----
From: dollarbulldog
To: gidlist
Sent: Sunday, December 10, 2006 2:42 PM
Subject: [GiDlist] node numbering
Dear GiD Team
Now I am coding a v.8 template file to match with a BEM solver named BEMECH (X.-W. Gao and T.G. Davies, 2000). The important thing is that set of boundary nodes must be ordered before starting of internal nodes (if any). I 've found that mesh generator does not follow this rule by default. Does GiD provide such feature to generate a set of boundary node before that of internal node? Thank you.
Sincerely
adisorn o.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] Two assembled faces but with different number of nodes
Send by: Isabel Gil Hello Gid's users, Some days ago, I made the following question: "*I have a question about how I must work when I have two different layers but which are assembled. I must say that is a simple case in order to know the proper way to work. I create the first layer (a 3D cube) and I create its volume, as it is said in Gid manual. Later, I create the second layer which is another 3D cube and, again, I create its volume. When I show these two layers and I mesh it, the face shared by the two cubes contains the double of nodes (ones for the first layer and others for the second one). What I really want to get is to have only a series of nodes in that face*." Julian advised me to use (Utilities->collapse) and I got my aim. But now, I would like to obtain another different goal. I would be very grateful if you could help me. I want the face of the first volume (which is on the first layer) to have the double number of nodes than the face of the second volume (which is on the second layer) but that the name of nodes that both faces share, fit in. Perhaps if I show some pictures, I can make easier what I want to say: Name of nodes on the face of the first volume (one layer): 1_____2____3___4____ 5 |... [GiDlist] Two assembled faces but with different number of nodes
Send by: Enrique Escolano You need to create different surfaces for each volume, not a shared one, because it seems that you want non-conformal neighbor volume elements. In other hand, you can share, if you want, some points/lines of neighbor surfaces. If you share a geometric point/line, then its nodes will be shared between generated mesh elements. Regards Enrique Escolano ----- Original Message ----- From: "Isabel Gil" <misabel at litec.csic.es> To: "GID_FORO" <gidlist at gatxan.cimne.upc.es> Sent: Monday, December 11, 2006 3:01 PM Subject: [GiDlist] Two assembled faces but with different number of nodes >... [GiDlist] Two assembled faces but with different number of nodes
Send by: Isabel Gil Hello! Thanks for your quick answer. Then, you mean I don't have to use (utilities->collapse->volume) or (utilities->collapse->surface) but I should use (utilities->collapse->points) and (utilities->collapse->lines), shouldn't I? But if I do it in that way, I won't share the same dofs because they will be different ones and I would like them to have the same names because they are the same ones, not different ones with the same names. Sorry for asking such a cumbersome question but thanks in advance and best regards! Isa Enrique Escolano wrote: > You need to create different surfaces for each volume, not a shared one, because it seems ... [GiDlist] Two assembled faces but with different number of nodes
Send by: Abel Coll Hello, I'm not sure if I understand your problem, but may be I can help you. If you want that the volume meshes share some node, that node must come from the same geometrical point. In your case, If you want some internal node of the "contact" surfaces not to be duplicated, you must divide the surface in the way that in the position of that node must be a geometrical point (which must belong to a line of the surface). Regards, ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 ... [GiDlist] Two assembled faces but with different number of nodes
Send by: Isabel Gil Thanks Abel. Abel Coll wrote: > Hello, > > I'm not sure if I understand your problem, but may be I can help you. > > If you want that the volume meshes share some node, that node must come from > the same geometrical point. In your case, If you want some internal node of > the "contact" surfaces not to be duplicated, you must divide the surface in > the way that in the position of that node must be a geometrical point (which > must belong to a line of the surface). > > Regards, > > ABEL > > __________________________________________________________ ... [GiDlist] URGENT: About GiD!
Send by: Stefania Ciliberti Hi!!! I have a problem: I'm trying to import into GiD a simple shapefile that represents a small area of the Crati's basin. The file is very simple because I'm using the free demo GiD, that is limitated to generate 1000 nodes c.a. I have visualized the countor lines of this small area, but each point of the line is characterized only by x and y coordinates; z coordinate in null. So, when I generate the NURBS Surface for my unstructured mesh, the program returns a domain in x-y plane with z=0 and don't generate the terrain model with a triangular mesh. Is it a problem of the type of shapefile or do I go in wrong when I import the file? Help me! Thanks! Stefania Ciliberti ------------------------------------------------------ Mutui a tassi scontati da 40 banche. Richiedi online e risparmia...Servizio gratuito. www.mutuionline.it ... [GiDlist] Read functionality within GiDPost-library
Send by: Andreas Hauck Hi,
do you have any plans to extend the GidDPost library, so it can be also
used to retrieve data from the result files? I really would appreciate
this functionality, as I want to compare the data of two GiD-files using
a small C-program on the command line.
Regards,
Andreas
--
_/ _/_/ _/_/_/ Friedrich Alexander Universitaet Erlangen
_/ _/ _/ _/ Lehrstuhl fuer Sensorik
_/ _/ _/ Paul-Gordan-Str. 3-5, D-91052 Erlangen
_/ _/_/ _/_/_/
_/ _/ _/ Friedrich Alexander University Erlangen
_/ _/ _/ _/ Department of Sensor Technology
_/_/_/ _/_/ _/_/_/ Paul-Gordan-Str. 3-5, D-91052 Erlangen
M.Sc. Andreas Hauck
email.: ...
[GiDlist] Postprocessing data
Send by: Smith, Mark Hi Gid Team Is it possible to extend the post-processing capability by allowing existing data to be plotted in different ways. For example if I had 3 scalar quantities on nodes say displacements x,y & z it would be nice to be able to plot the magnitude of the displacement on a displaced mesh. In fact it would be useful to post process results by applying any mathematical process on the existing results to form a new output. At the moment you seem to have to write a new results file capability in the solver? A script language would be useful & not Tcl/Tk which I find to be the most unintuitive language invented! Regards mark This message (including any attachments) contains confidential and/or proprietary information intended only for the addressee. Any unauthorized disclosure, copying, distribution or reliance on the contents of this information is strictly prohibited and may constitute a violation of law. If you are not the intended recipient, please notify the sender immediately by responding to this e-mail, and delete the message from your system. If you have any questions about this e-mail please notify the sender immediately. ... [GiDlist] Postprocessing data
Send by: Ramon Ribó Hey, you should not be so negative with TCL. It is a nice
language.
We have developed a new window that does exactly this. It combines
results in an algebraic mode. It does not need TCL as it is just necessary
to introduce an expression. It will be available in the next RamSeries
version.
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com ramsan at compassis.com
c/ Tuset, 8 7-2 tel. +34 93 218 19 89
08006 Barcelona, Spain fax. +34 93 396 97 46
En Tue, 12 Dec 2006 11:04:11 +0100, Smith, Mark <...
[GiDlist] Postprocessing data
Send by: Enrique Escolano You can create/delete at runtime new results, with the 'GiD_Result' GiD-Tcl command (explained in the GiD help, Tcl/Tk extension, special funcions) This command is a first step to do more advanced tools with the scripting language (Tcl/Tk off course) Enrique ----- Original Message ----- From: "Smith, Mark" <Mark.Smith at linx.co.uk> To: <gidlist at gatxan.cimne.upc.edu> Sent: Tuesday, December 12, 2006 11:04 AM Subject: [GiDlist] Postprocessing data > Hi Gid Team >... [GiDlist] Postprocessing data
Send by: Miguel Pasenau Hello, In the last 8.0.2 version of GiD there is a window which can be popped up with 'Windows->Create result..." which lets you operate between results with the basic operators: +, -, * and /. As Ramón said, there will be a new and more powerful window. If you look into the file '%GiDInstallDirectory%/scripts/PostCreateResult.tcl' you'll find the three functions which let's you retrieve, delete and create results inside GiD: GiD_Result get ... GiD_Result delete ... GiD_Result create ... (Look for these names at http://www.gidhome.com/support/gid_18.subst#SEC303... [GiDlist] Postprocessing data
Send by: Smith, Mark Hi Miguel Thanks for the reply. Tcl/Tk is obviously a good powerful language, it's me that's the problem, I'm getting old & it's like nothing else I've used ;-( I find Lua much easier. I must check out the latest version as I'm still using 7.7.7b. Regards mark -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] On Behalf Of Miguel Pasenau Sent: 12 December 2006 15:32 To: gidlist at gatxan.cimne.upc.edu... [GiDlist] Contour lines of element results / 1D results on 2D mesh
Send by: Andreas Hauck Hi,
In my GiD-post file I have 2D quadrilaterals and 1D line elements, both
1st order. On the 2D elements there is defined a nodal result
(elecPotential), as well as an element result (elecFieldIntensity),
which is just computed for the central point of each element. I use GiD
8.0.1 on a Linux machine.
When I now try to use contour lines, I can only visualize the nodal
field, whereas the element results gives no lines at all. Is this
intended or is there something wrong with my definition of the Gauss
points? The file was created using the gidpost library 1.7 (see attachment).
Additionally I have results defined on 1D line elements within this
grid. These results I can only visualize with a normal contour fill,
because smooth contour fill gives only 0's. Is this a correct behavior
or is there a possibility to smooth contour fill also the values of 1D
results onto a 2D grid?
The files of concern are attached in .tar.gz format.
Thanks for your help.
Regards,
Andreas
--
_/ _/_/ _/_/_/ Friedrich Alexander Universitaet Erlangen
_/ _/ _/ _/ Lehrstuhl fuer Sensorik
_/ _/ _/ Paul-Gordan-Str. 3-5, D-91052 Erlangen
_/ _/_/ _/_/_/
_/ _/ _/ Friedrich Alexander University Erlangen
_/ _/ _/ _/ Department of Sensor Technology
_/_/_/ _/_/ _/_/_/ Paul-Gordan-Str. 3-5, D-91052 Erlangen
M.Sc. Andreas Hauck
email.: ...
[GiDlist] Contour lines of element results / 1D results on 2D mesh
Send by: Miguel Pasenau Hi, i'll check it. In the meantime ¿have you tried the ftp://www.gidhome.com/pub/gid/Linux/gid8.0.2-dyn-kernel2.6.tar.gz or ftp://www.gidhome.com/pub/gid/Linux/gid8.0.2-dyn-kernel2.2.tar.gz version? Regards Miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.edu [mailto:gidlist-admin at gatxan.cimne.upc.edu] En nombre de Andreas Hauck Enviado el: miércoles, 13 de diciembre de 2006 10:02 Para: ... [GiDlist] Contour lines of element results / 1D results on 2D mesh
Send by: Andreas Hauck Hi, I have tried the 8.0.2. version, but the problem is the same. If you could please check, what's the problem with the element data and contour lines? Regards, Andreas Miguel Pasenau wrote: > Hi, > i'll check it. > In the meantime ¿have you tried the > ftp://www.gidhome.com/pub/gid/Linux/gid8.0.2-dyn-kernel2.6.tar.gz or > ftp://www.gidhome.com/pub/gid/Linux/gid8.0.2-dyn-kernel2.2.tar.gz version? > > Regards ... [GiDlist] Quadratic contunuum elements
Send by: Jose Munoz Dear GID team, I have cehcked that the new version of GID plots quadratic line elements very nicely, showing curved elements when they are indeed curved. However, if I am right, it is not so for quadratic quadrilaters or triangles. Do you have any plans to plot quadratic body elements in future versions? Many thanks, Jose Munoz [GiDlist] Quadratic contunuum elements
Send by: Enrique Escolano If you set the "quadratic visualization" mode, then as you said, lines are showed curved, and also edges of triangles/quadrilaterals, and the interior each triangle/quadrilateral is showed with four lineal subtriangles/subquadrilaterals. We don't planned to show this interior "body" more accurately, because it will be too expensive to draw (usually there is a lot of elements), but maybe we can think to add some user variable to set this element visualization accuracy. Enrique Escolano ----- Original Message ----- From: "Jose Munoz" <j.munoz at upc.edu> To: <... [GiDlist] Extruding by batch file command
Send by: Janosch Stascheit Hello, i am trying do automatically generate a volume via batch file. This is intended to be created by defining a cross-section (as set of surfaces), that shall be extruded along a nurbs line into a volume. Unfortunately, neither the Sweep nor the Extrude option works from the GiD command line or batch file. Do you have any suggestions? Kind regards Janosch [GiDlist] quadrilaterals in circles
Send by: Benjamin Sanderse Hello all, I have the following problem: I want to simulate the flow around a cylinder in 3D. The cylinder must be detached from the sides of the domain in order to see edge effects. The code that I am using accepts only hex elements; basically I use quadrilaterals extruded tot a third dimension. The problem now lies in modelling the two ends (circles) of the cylinder, since GiD does not allow me to model them as quads... What is the solution for this? Benjamin -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20061219/26fbf46a/attachment.htm... [GiDlist] quadrilaterals in circles
Send by: Abel Coll
Hello Benjamin,
You can mesh circles with quadrilaterals using GiD. If you want the mesh to
be structured, the circle must have 4 contour lines, but this kind of meshes
is not nice in circles.
The best thing you can do is to mesh the circles using unstructured
quadrilateral. The only restriction for doing this kind of mesh is that each
contour line of the circle must have an even number of elements (divisions).
Regards,
ABEL
__________________________________________________________
Abel Coll Sans
CIMNE - International Center for Numerical Methods in Engineering
Office C2 - C1Building - Campus Nord UPC
Gran Capità s/n, 08034 Barcelona
Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17
<mailto:...
[GiDlist] quadrilaterals in circles
Send by: Enrique Escolano You can also try the other option pointed by Abel: subdivide the circle in 4-sided structured parts. I attach an image of two possible patterns. The second one can have acceptable quality. ----- Original Message ----- From: Benjamin Sanderse To: gidlist at gatxan.cimne.upc.es Sent: Tuesday, December 19, 2006 1:26 AM Subject: [GiDlist] quadrilaterals in circles Hello all, I have the following problem: I want to simulate the flow around a cylinder in 3D. The cylinder must be detached from the sides of the domain in order to see edge effects. The code that I am using accepts only hex elements; basically I use quadrilaterals extruded tot a third dimension. The problem now lies in modelling the two ends (circles) of the cylinder, since GiD does not allow me to model them as quads... What is the solution for this? Benjamin -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] quadrilaterals in circles
Send by: Benjamin Sanderse Thank you all. It indeed worked in 2 dimensions. In 3D it hoewever doesn't seem to work, and I could not figure out why. I attached my geometry, so maybe you can have a look at it. As you can see, only half of the cylinder has a volume defined in it. This part is supposed to be fluid. The other part does not need a mesh inside, as it is the body of the cylinder. Meshing gives an error at the cylindrical volume. How do you think to solve this? Benjamin ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.edu Sent: Tuesday, December 19, 2006 5:59 AM Subject: Re: [GiDlist] quadrilaterals in circles You can also try the other option pointed by Abel: subdivide the circle in 4-sided structured parts. I attach an image of two possible patterns. The second one can have acceptable quality. ----- Original Message ----- From: Benjamin Sanderse To: ... [GiDlist] quadrilaterals in circles
Send by: Benjamin Sanderse And the attachment.... ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.edu Sent: Tuesday, December 19, 2006 5:59 AM Subject: Re: [GiDlist] quadrilaterals in circles You can also try the other option pointed by Abel: subdivide the circle in 4-sided structured parts. I attach an image of two possible patterns. The second one can have acceptable quality. ----- Original Message ----- From: Benjamin Sanderse To: gidlist at gatxan.cimne.upc.es... [GiDlist] quadrilaterals in circles
Send by: Abel Coll Hello,
It seams that you had not assigned compatible meshing data to entities.
Using GiD, hexahedra elements can only be done using structured or
semi-structured volume mesh, so all the volumes must have this kind of
meshes. I send you an example of a possible mesh of your model.
Regards,
ABEL
__________________________________________________________
Abel Coll Sans
CIMNE - International Center for Numerical Methods in Engineering
Office C2 - C1Building - Campus Nord UPC
Gran Capità s/n, 08034 Barcelona
Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17
<mailto:abelcs at cimne.upc.edu...
[GiDlist] quadrilaterals in circles
Send by: Benjamin Sanderse I see that your mesh is indeed working, but I cannot discover what you changed to make it work. I defined the volume as structured mesh and the front and end circles as unstructured. I still get the error messages that for the circular surface 'all contour lines must have an even number of sides'. The circles have 8 sides and I defined two elements on each side. I do not see why this doesn't work. Can you give me your approach? Benjamin ----- Original Message ----- From: Abel Coll To: gidlist at gatxan.cimne.upc.edu Sent: Tuesday, December 19, 2006 12:12 PM Subject: RE: [GiDlist] quadrilaterals in circles Hello, It seams that you had not assigned compatible meshing data to entities. Using GiD, hexahedra elements can only be done using structured or semi-structured volume mesh, so all the volumes must have this kind of meshes. I send you an example of a possible mesh of your model. Regards, ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 ... [GiDlist] quadrilaterals in circles
Send by: Abel Coll Hello, You have to ensure that the line divisions are compatible. For example: if you want to mesh one four-sided surface with structured quadrilateral and you assign 2 and 3 number of divisions to opposite lines of the surface, GiD will mesh both lines with 3 number of divisions, to make the mesh compatible. May be this is the reason why your circle lines are meshed with an odd number of divisions, even if you assign an even number of it (in your case 2). A part from that, which GiD version are you using? I recommend you to use the last official version (8.0.2), because there are some bug fixed from older versions. Regards, ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 <mailto:... [GiDlist] quadrilaterals in circles
Send by: Benjamin Sanderse Hi Abel, I get your point yes, but still I am not able to get it working myself. If I define the interior cylinder volume as structured of semi-structured GiD crashes. I am using version 8.0.2, so that should work...? Benjamin ----- Original Message ----- From: Abel Coll To: gidlist at gatxan.cimne.upc.edu Sent: Wednesday, December 20, 2006 4:48 AM Subject: RE: [GiDlist] quadrilaterals in circles Hello, You have to ensure that the line divisions are compatible. For example: if you want to mesh one four-sided surface with structured quadrilateral and you assign 2 and 3 number of divisions to opposite lines of the surface, GiD will mesh both lines with 3 number of divisions, to make the mesh compatible. May be this is the reason why your circle lines are meshed with an odd number of divisions, even if you assign an even number of it (in your case 2). A part from that, which GiD version are you using? I recommend you to use the last official version (8.0.2), because there are some bug fixed from older versions. Regards, ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 ... [GiDlist] quadrilaterals in circles
Send by: Abel Coll Hi Benjamin, There is a corrected bug in the 8.0.2 version, that will be available in the next official version. It will be public very soon (today or the next week), so you will be able to mesh your model. I thought it was already fixed in the 8.0.2 version, so Im sorry for have not telling this to you before. Thanks for notifying us this irregular behaviour of GiD. Best regards, ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 <mailto:... [GiDlist] quadrilaterals in circles
Send by: Benjamin Sanderse Ok, I am waiting for the new version now. Benjamin ----- Original Message ----- From: Abel Coll To: gidlist at gatxan.cimne.upc.edu Sent: Friday, December 22, 2006 3:00 AM Subject: RE: [GiDlist] quadrilaterals in circles Hi Benjamin, There is a corrected bug in the 8.0.2 version, that will be available in the next official version. It will be public very soon (today or the next week), so you will be able to mesh your model. I thought it was already fixed in the 8.0.2 version, so I'm sorry for have not telling this to you before. Thanks for notifying us this irregular behaviour of GiD. Best regards, ABEL __________________________________________________________ Abel Coll Sans CIMNE - International Center for Numerical Methods in Engineering Office C2 - C1Building - Campus Nord UPC Gran Capità s/n, 08034 Barcelona Tfn: 34 - 93 401 74 03 Fax: 34 - 93 401 65 17 ... [GiDlist] parametric model, modify geometry
Send by: Karsten Quint Dear GiD-Users, I am interested in creating a parametric model and assign variables to the dimensions. So far I couldnt find any information on this in the manuals. Is this possible in GiD? What are the possibilities to modify the geometry? Do I have to move points or is there some smarter way? Regards, Karsten ____________________________________________________________ Dipl.-Ing. Karsten Jens Quint Universität Kassel Institut für Mechanik/ FG Kontinuumsmechanik Mönchebergstraße 7 D-34125 Kassel t +49 (0)561 804 3606 f +49 (0)561 804 2720 e quint at uni-kassel.de... [GiDlist] parametric model, modify geometry
Send by: Enrique Escolano Sorry, but is in general it not possible with GiD. For simple cases, you can write a Tcl procedure that use GiD commands to rebuilt your geometry based on the parameter values (or write a batch file with the list of GiD commands) Regards Enrique ----- Original Message ----- From: Karsten Quint To: gidlist at gatxan.cimne.upc.es Sent: Tuesday, December 19, 2006 6:31 PM Subject: [GiDlist] parametric model, modify geometry Dear GiD-Users, I am interested in creating a parametric model and assign variables to the dimensions. So far I couldn't find any information on this in the manuals. Is this possible in GiD? What are the possibilities to modify the geometry? Do I have to move points or is there some smarter way? Regards, Karsten ____________________________________________________________ Dipl.-Ing. Karsten Jens Quint Universität Kassel Institut für Mechanik/ FG Kontinuumsmechanik Mönchebergstraße 7 D-34125 Kassel t +49 (0)561 804 3606 f +49 (0)561 804 2720 e ... [GiDlist] Stl import
Send by: Smith, Mark Hi gidteam In Netgen there is the ability to import geometry in stl format & remesh with nice shaped elements, I can then export this in stl format for importing into GiD, Is there a way I could do thin within GiD without using Netgen? I'd like to import stl geometry rather than as a mesh so I can edit the geometry, add boundary conditions etc before meshing. Regards & seasons greetings mark This message (including any attachments) contains confidential and/or proprietary information intended only for the addressee. Any unauthorized disclosure, copying, distribution or reliance on the contents of this information is strictly prohibited and may constitute a violation of law. If you are not the intended recipient, please notify the sender immediately by responding to this e-mail, and delete the message from your system. If you have any questions about this e-mail please notify the sender immediately. ... [GiDlist] Stl import
Send by: Enrique Escolano Hi Mark,
I don't know wall all Netgen features to remesh over a triangulation.
A Stl file itself is a triangle mesh closing a volume, are not "geometrical surfaces" in the GiD context.
You can import it in GiD:
1- As a mesh. Then you can try to do some mesh operation, like collapse edges, smooth, swap normals, etc, in order to enhance it.
You can also try to mesh the closed volume with tetrahedra, from this boundary triangles (without remesh the triangles).
And is possible to assign materials and conditions directly to mesh entities.
But in general GiD is more oriented to work with the geometry as source, not the mesh.
2- As a "surf-mesh", to try to use this triangles as pseudo-surfaces than can be remeshed.
3- Convert each triangle in a surface, for example importing the mesh, exporting it with the DxfSAP2000 template, and importing the
dxf again. Then you can use all geometrical GiD tools, but you will have a lot of small planar surfaces. Maybe using the Rjump
mesher features, can obtain a surface mesh similar to the Netgen one.
Regards
Enrique
----- Original Message -----
From: "Smith, Mark" <...
[GiDlist] Point Evolution Problem
Send by: Rodrigo Rossi Hi everyone, I think that I am experiencing a bug in the Point Evolution tool in the post processing phase. I am sending attached to this e-mail two archives (.res and .msh) with the post processing information. Also, I am sending the temperature evolution for the nodes at the vertices of the element 41, and for the point at the centroid of this element. Surprising, the temperature evolution at the centroid of element behaves in a very strange manner. I expected that the evolution of the temperature in such point had a behavior as a average (fem interpolation) of the two curves. Regards and Merry Christmas for everybody, Rodrigo ---------------------------------------------------- Rodrigo Rossi, Dr. Eng. Mec. Departamento de Engenharia Mecânica - Bloco D Universidade de Caxias do Sul 95001-970 - C.P. 1352 - Caxias do Sul - RS Fone: 0xx54 3218 2100 ramal 2802 Fax: 0xx54 3218 2168 <... [GiDlist] New GiD 8.0.6 for Windows
Send by: Enrique Escolano Dear GiD Users. Now is available a New GiD 8.0.6 official 8 version for Windows. http://www.gidhome.com/download/do01_v8 This version has basically the same features as the previous 8.0.2, but some bugs have been corrected. GiD 8.0.6 official 8 version will be available for other platforms in January (including the MacOSX we expect) Also in January we are planning to release a 8.1.1b beta version with a lot of news. Merry Christmas The GiD Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20061222/abf15d20/attachment.htm... |