Contact CIMNE
Edificio C-1, Campus Norte UPC C/ Gran Capitán s/n. 08034 Barcelona - Spain
|
|   |
Support
Mailing list
GiDList year 2004
| GidList 2004 |
|
Mailing list Archive year 2004
[GiDlist] Element connectivity problem (repost)
Send by: Roger Young I posted this inquiry before Xmas but it may have got lost in the rush,
hence this repost.
Basically the problem concerns the GiD connectivity format which is
apparently incompatible with my application. Is there any way to
control/alter this format (particularly when specifying the
connectivity of surfaces)?
Roger Young.
*********************************************************************
Hello, I am trying to prepare a customized connectivity
data in a particular format ("ucd"). The data file
is created correctly following the specified template,
but it is incompatible with the orientations assumed
in the application (using the deal.II FE library).
Is it possible to specify the connectivity ordering in GiD?
For example, GiD has left-handed axes, but deal.II assumes
a right-handed system. Probably if I could work with right-handed
axes in GiD I could solve my problem? What is the recommended
procedure for working with differently ordered systems? I looked
at the "swap" feature and at defining a "local coordinate system"
but could not see how to make these work.
To make clear my problem I list below 2 ucd data files, the first (a) has been
produced by GiD, the second (b) is done by hand. The 2 formats are not
compatible because of the different implied orderings. The GiD file (a)
does not work with my application, whereas (b) is accepted.
Thanks for your help.
Seasons Greetings,
Roger Young.
Industrial Research Ltd.,
Box 31-310 Lower Hutt,
New Zealand.
...
[GiDlist] Element connectivity problem (repost)
Send by: Enrique Escolano In your problemtype *.bas file, you can write the 'GiD default' element connectivities with *elemsconec, or can write your own order with *elemsconec(<number>), where <number> is a integer from 1 to the element number of nodes In fact, in your sample (a): 0 0 hex 7 6 2 4 5 3 0 1 the connectivities are not the GiD default !!! The vector product 7-6 X 6-2 by default points inside the element, but in your sample it points outside. Instead the default order: *loop elems *elemsnum hex *elemsconec *end elems Can select your own output order, for example: *loop elems *elemsnum hex *elemsconec(1) *elemsconec(2) *elemsconec(3) *elemsconec(4) *elemsconec(5) *elemsconec(6) *elemsconec(7) *elemsconec(8) quad 0 *elemsconec(1) *elemsconec(2) *elemsconec(3) *elemsconec(4) quad 1 *elemsconec(5) *elemsconec(6) *elemsconec(7) *elemsconec(8) ... *end elems If your nodes number must start from 0 instead to 1, can use the *operation command: *elemsnum hex *operation(elemsconec(1)-1) *operation(elemsconec(2)-1) , etc Regards Enrique Escolano ----- Original Message ----- From: "Roger Young" <... [GiDlist] Element connectivity problem (repost)
Send by: Roger Young Enrique: Thanks very much for your comments, they have been very helpful. However I am still not able to bring the two orderings (a) and (b) into coincidence. The tag (quad) section in (a) has the following interpretation: 0 5103 front y=0 -> 5301 1 7624 back y=1 2 2014 bottom z=0 3 7415 right x=1 -> 7514 4 7537 top z=1 -> 7635 5 6302 left x=0 col1: tag number col2: the 4 nodes defining the quad surface col4: quad plane col3: description of quad The ordering (a) can be made equivalent to (b) by making the changes shown, but only in tags 0,3,4. Thus a global reordering (the same for each quad) is not what is required. >... [GiDlist] Element connectivity problem (repost)
Send by: Enrique Escolano If a GiD hexahedral has the nodes 1 2 3 4 5 6 7 8
then the vector product of the vectors 12 and 23 points inside (to the opposite face 5 6 7 8)
but in your (b) sample this vector product points outside, must swap the nodes 2-4 and 6-8
For the elements you must then write: (using numeration beginnig by 1, not 0)
*elemsconec(1) *elemsconec(4) *elemsconec(3) *elemsconec(2) *elemsconec(5) *elemsconec(8) *elemsconec(7) *elemsconec(6)
In Other hand, you can identify the face marked by a condition, the Implicit GiD Hexahedra faces are: 1234 1562 2673 3784 1485 5876
For example, the first face is 1234. Checking the second node, only this face has the node number 2 (local numeration) at this second location
*if(LocalNodes(2)==2)
This is the first Face
*endif
All GiD faces ABCD vector product ABxBC points inside the element, but in your sample (b) the faces numeration is different,
some faces points inside and some faces outside
This can be your bas file corrected (it's attached inside ucd.zip)
*#
*# Coordinates
*loop nodes
*operation(nodesnum-1) *nodescoord
*end nodes
*#
*# Hexahedral elements
*set elems(hexahedra)
*set var recnum=0
*loop elems
*recnum hex *operation(elemsconec(1)-1) *operation(elemsconec(4)-1) *operation(elemsconec(3)-1) *operation(elemsconec(2)-1) *operation(elemsconec(5)-1) *operation(elemsconec(8)-1) *operation(elemsconec(7)-1) *operation(elemsconec(7)-1)
*set var recnum=operation(recnum+1)
*end elems
*#
*# Tags over faces
*#Implicit GiD Hexahedra faces are: 1={1234} 2={1562} 3={2673} 4={3784} 5={1485} 6={5876}
*# desired ouput faces are A B C D E F
*set cond FaceTag *elems *canrepeat
*loop elems *OnlyInCond
*if(LocalNodes(2,int)==2)
*#GiD Face 1 -> B
*cond(Tag) quad *operation(globalnodes(3)-1) *operation(globalnodes(4)-1) *operation(globalnodes(1)-1) *operation(globalnodes(2)-1)
*elseif(LocalNodes(2,int)==5)
*#GiD Face 2 -> E, swap
*cond(Tag) quad *operation(globalnodes(3)-1) *operation(globalnodes(2)-1) *operation(globalnodes(1)-1) *operation(globalnodes(4)-1)
*elseif(LocalNodes(1,int)==2)
*#GiD Face 3 -> F
*cond(Tag) quad *operation(globalnodes(3)-1) *operation(globalnodes(4)-1) *operation(globalnodes(1)-1) *operation(globalnodes(2)-1)
*elseif(LocalNodes(1,int)==3)
*#GiD Face 4 -> C
*cond(Tag) quad *operation(globalnodes(2)-1) *operation(globalnodes(3)-1) *operation(globalnodes(4)-1) *operation(globalnodes(1)-1)
*elseif(LocalNodes(2,int)==4)
*#GiD Face 5 -> D, swap
*cond(Tag) quad *operation(globalnodes(3)-1) *operation(globalnodes(2)-1) *operation(globalnodes(1)-1) *operation(globalnodes(4)-1)
*elseif(LocalNodes(1,int)==5)
*#GiD Face 6 -> A, swap
*cond(Tag) quad *operation(globalnodes(3)-1) *operation(globalnodes(2)-1) *operation(globalnodes(1)-1) *operation(globalnodes(4)-1)
*endif
*end elems
Maibe it exists some order bug related to your desired output, but you can easy correct it.
Regards
Enrique Escolano
----- Original Message -----
From: "Roger Young" <...
[GiDlist] Element connectivity problem (repost)
Send by: Roger Young Enrique: the key -- as you point out -- is to use the local numbering (LocalNodes) to help identify the appropriate global orientation of the boundary faces. Thanks very much for your assistance!! Regards, Roger Young ............................................................................................ On Fri, 9 Jan 2004 13:40:49 +0100 "Enrique Escolano" <escolano at cimne.upc.es> wrote: > If a GiD hexahedral has the nodes 1 2 3 4 5 6 7 8 > then the vector product of the vectors 12 and 23 points inside (to the opposite face 5 6 7 8) >... [GiDlist] tcl [.central.s info gendata OTHERFIELDS]
Send by: VSayako Willy Hi Enrique, a GiD Team, and all I tried to get the information from .prb file by using [.central.s info gendata FIELDNAME] but it said "argument is wrong".. What does it really mean by OTHERFIELDS and BOOKS after <gendata> if I have for example: QUESION:Stress_Coefficient VALUE:1 Then to get the value from FIELD: Stress_Coefficient [.central.s info gendata Stress_Coefficient] I wrote as above but got warning message as a "Wrong argument".. How would it be?? Regards. __________________________________ Do you Yahoo!? Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes http://hotjobs.sweepstakes.yahoo.com/signingbonus... [GiDlist] tcl [.central.s info gendata OTHERFIELDS]
Send by: Enrique Escolano .central.s info gendata
returns a list with the field names and current values, then you can get easy get from this list the desired field value, for example:
set Stress_Coefficient [lindex [.central.s info gendata] 2]
But, instead to access to field values by index, it's more easy to maintain the code (if are added or removed fields) using the fieldname
Inside the file dev_kit.tcl is defined a tcl procedure for this pourpose: proc GidUtils::GetProblemDataValue { fieldname }
For example, you must use
set Stress_Coefficient [GidUtils::GetProblemDataValue Stress_Coefficient]
The parameter OTHERFIELDS returns the value of other special fields, as HELP, DEPENDENCIES,
but in your sample only use QUESTION and VALUE, and then it not exists other fields.
The parameter BOOKS only has sense if are defined BOOKS in your problemtype
Note: With the field Book it is possible to split the data windows in other windows. For example, we can have two
windows for the materials, one for the steels and another for the concretes
Read GiD Help about Configuration files->Special fields
Enrique Escolano
----- Original Message -----
From: "VSayako Willy" <...
[GiDlist] Element connectivity problem (repost)
Send by: Roger Young I made some progress with my connectivity problem...
With reference to p.200 (GlobalNodes) of the Reference Manual I think what I need to do is to
reverse the orientation on some of the faces namely
1562 --> 1265
2673 --> 2376
5876 --> 5678
In my model these faces are tagged 0,3,4 respectively. Hence in the Tag section of ucd.bas I have
something like
*# Tags over faces
*set cond FaceTag *elems *canrepeat
*loop elems *OnlyInCond
*set var n=cond(Tag,int)
*if((n==0)||(n=3)||(n=4))
*recnum *cond(Tag) quad *operation(globalnodes(1)-1) *operation(globalnodes(4)-1) *
*operation(globalnodes(3)-1) *operation(globalnodes(2)-1)
*else
*recnum *cond(Tag) quad *operation(globalnodes(1)-1) *operation(globalnodes(2)-1) *
*operation(globalnodes(3)-1) *operation(globalnodes(4)-1)
*endif
*set var recnum=operation(recnum+1)
*end elems
*#
Although this works for a number of examples it does seem a little ad hoc. What if I have a more
complicated model which is not a cuboid (but still using hex elements)? How can I identify which
boundary face elements need a reversed orientation for compatibility with the Deal library??
Since there is a consistent ordering in both GiD and Deal there must be a canonical transformation
between the two....
Could I ask for your opinion?
Regards,
Roger Young.
..................................................................................................
Enrique: Thanks very much for your comments, they have been very helpful.
However I am still not able to bring the two orderings (a) and (b)
into coincidence. The tag (quad) section in (a) has the following interpretation:
0 5103 front y=0 -> 5301
1 7624 back y=1
2 2014 bottom z=0
3 7415 right x=1 -> 7514
4 7537 top z=1 -> 7635
5 6302 left x=0
col1: tag number
col2: the 4 nodes defining the quad surface
col4: quad plane
col3: description of quad
The ordering (a) can be made equivalent to (b) by making the changes shown,
but only in tags 0,3,4. Thus a global reordering (the same for each quad)
is not what is required.
>...
[GiDlist] Results files
Send by: Enrique Escolano Your *.flavia.res must be inside your model directory, and with the same model name. For example, if your model is saved in C:/tmp/test.gid, then your result file must be inside this directory and must be named C:/tmp/test.flavia.res (or C:/tmp/test.flavia.post) (when you change from pre to postprocess this files are automatically loaded, but if you use another name, mush open it manually from the postprocess) Read GiD help about Posprocessing data files. Enrique Escolano ----- Original Message ----- From: Marcos Todeschini To: gidlist at gatxan.cimne.upc.es Sent: Tuesday, December 30, 2003 9:36 PM Subject: [GiDlist] Results files Hi: I want to know if the results files (flavia.res flavia.msh) that my excecution module produce must be in a particular way, and if it is like that where i can find it, becuase in the tutorial doesn't apear. Thanks ------------------------------------------------------------------------------ ¿Buscás un auto? Encontralo en Yahoo! Autos ¡Más de 4000 clasificados todos los días! Usados - 0 km - Vendé el tuyo -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] material interface
Send by: Enrique Escolano I don't understand exactly your question. If your results are located over nodes, then if the nodes are shared between interface elements, the result is the same for the elements at the two interface sides (the discontinuity is smooted), maybe you need to duplicate this nodes. Can also write the results over the elements (at some "gauss points"), and then this result is not smoothed between elements Enrique Escolano ----- Original Message ----- From: <aliok at boun.edu.tr> To: <gidlist at gatxan.cimne.upc.es... [GiDlist] Symbols
Send by: Marcos Todeschini Hi, gid group, i want to know how can i define the files *.geo, which is the lenguaje that that they are written. Thanks --------------------------------- ¿Buscás un auto? Encontralo en Yahoo! Autos ¡Más de 4000 clasificados todos los días! Usados - 0 km - Vendé el tuyo -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040108/df3338e1/attachment.htm [GiDlist] Symbols
Send by: Enrique Escolano The *.geo file is a 3D model create directly with GiD. Create a model, save it normally (or as ascii project), and copy the file *.geo to your problemtype. The size is not important: the model is automatically scaled by GiD when draw the conditions. Read GiD Times volume 2, June 2003 magazine. At the page number 7 is related a brief description to use symbols in a problemtype http://www.gidhome.com/gidtimes Enrique Escolano ----- Original Message ----- From: Marcos Todeschini To: gidlist at gatxan.cimne.upc.es Sent: Thursday, January 08, 2004 1:03 PM Subject: [GiDlist] Symbols Hi, gid group, i want to know how can i define the files *.geo, which is the lenguaje that that they are written. Thanks ------------------------------------------------------------------------------ ¿Buscás un auto? Encontralo en Yahoo! Autos ¡Más de 4000 clasificados todos los días! Usados - 0 km - Vendé el tuyo -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] problems with cutwire
Send by: Andres Peratta I need to postprocess my results along a sequence of points in a 3D mesh. I normally use the command CUTWIRE and then apply BORDER_GRAPH to the resulting cut. However, CUTWIRE presents a big problem: The points of my cutwire are not coincident with the nodes of the mesh, ( where the results are prescribed ). In fact, the distance between two consecutive points in the cutwire is small in comparison with the size of the adjacent elements (tetrahedrons). For this reason somehow GID does not respect the coordinates that I enter by hand, and the points of the cutwire are automatically located in any other place thus generating a distorted cutwire. This must be an internal algorithm used to detect near postprocessing nodes. Now, I just would like cutwire to respect the coordinates that I introduce by hand so I could export the right coordinates of the points entered by hand to an ASCII file, and use my own interpolation method to rebuild the results there. Do you have any suggestion about it ? Is it possible to override the command cutwire with any tcl script in order to prevent that automatic relocation of the points that define the cutwire ? thanks in advance, Andres ... [GiDlist] problems with cutwire
Send by: Enrique Escolano At this moment, the cutwire points must be located over element edges. Iif the selected point is not over a edge is moved to a near edge
It's not possible to override this command because is internal to the C++ kernel, is not a tcl procedure.
But it's possible to make another own tcl procedure for your pourposes:
1) This procedure can collect and store in a tcl variable a list of points
Can request the user for a point with the tcl command GidUtils::GetCoordinates, for example
set coord [GidUtils::GetCoordinates [= "Enter node coordinates"] NoJoin]
2) Then can write this points to a file, and run your code to calculate your own interpolated result
3) Your code can write this results as a graph Ascii file (to see a sample format, Files->Export->Graph),
and read it inside GiD with:
.central.s process escape escape escape results graphs readgraph "filename"
Note: In the last beta 7.7.4b , it's also possible to draw inside GiD directly with OpenGL, but this feature is currently undocumented.
For this pourpose, it's defined a new tcl procedure: drawopengl
can make a step 1.5) and define a function to draw the selected points connected by lines
For example:
proc MyDrawFunction { } {
set color "0 0 0" ;#rgb black
drawopengl draw -color $color -begin lines
drawopengl draw -vertex "0 0 0"
drawopengl draw -vertex "1 1 1"
drawopengl draw -end
}
#register this MyDrawFunction procedure to be called when need a redraw
set id [drawopengl register MyDrawFunction]
.central.s process redraw
# ...
#unregisted when is not needed
catch { drawopengl unregister $CreateMeshPriv(drawopengl) }
The commands for drawopengl draw are practically all valid OpenGL commands.
Regards
Enrique Escolano
----- Original Message -----
From: "Andres Peratta" <...
[GiDlist] postprocess
Send by: aliok at boun.edu.tr Hi, I want to learn something about the postprocess. I created an input file using GID then I run this file in another solver. This solver gives the results in a fixed format. When I want to import the result files into GID, do I need to create a .tcl file or any alternative ways to import the result into GID? In your example folder I found an example files about ANSYS and I think that ansys.tcl file is used to define types of result and result file format [GiDlist] postprocess
Send by: Enrique Escolano The usual way to work is create a bat file to run your solver automatically in background when the user press "Calculate" Your solver must create the postprocess files with a fixed GiD format, and with a specific name: <modelname>.flavia.res (or <modelname>.flavia.post) for the results file, and if required <modelname>.flavia.msh (this file only is required if the mesh is not the same as the preprocess one) When the user change to GiD postprocess, automatically are readed this postprocess files, it's not needed to write any <problemtype>.tcl file for this pourpose. Can read GiD Help customization to learn this concepts Enrique Escolano ----- Original Message ----- From: <... [GiDlist] postprocess
Send by: aliok at boun.edu.tr I read the document about the ansys and customization part of help. But i have a still questions about the example in ansys, you read the post data externally by using the ansys list option for this example. If we can directly do it with .bat file why do we need to read the output data externally. And also does this example work only for version 5.5. Thank you. > The usual way to work is create a bat file to run your solver automatically > in background > when the user press "Calculate" > Your solver must create the postprocess files with a fixed GiD format, and > with a specific name: ... [GiDlist] postprocess
Send by: Enrique Escolano Ansys is a "closed" code, and it not writes their results in the required GiD format. Then, with a small tcl procedure it's read the standard ansys output file, and is written another file with GiD postprocess format. The bat file is used to run ansys (and other possible auxiliry programs, for example to transform the output file) In other cases, the code developers can write directly in GiD postprocess format, and then it's not necessary this translation. Code developers can download from our web the 'gidpost' library. A library to be linked from C/C++ or Fortran, to write GiD posprocess ascii or binary compressed format. In other hand, Ansys is not the best problemtype sample. The problemtype Nastran as a good customization sample. Can download this problemtype directly from GiD (menu Data->Problemtype->Internet retrieve) Enrique Escolano ----- Original Message ----- From: <... [GiDlist] postprocess
Send by: aliok at boun.edu.tr Thanks a lot for detail explanation Ali OK > Ansys is a "closed" code, and it not writes their results in the required > GiD format. > Then, with a small tcl procedure it's read the standard ansys output file, > and is written another file with GiD postprocess format. > > The bat file is used to run ansys (and other possible auxiliry programs, for > example to transform the output file) > > In other cases, the code developers can write directly in GiD postprocess > format, and then it's not necessary this translation. >... [GiDlist] GiDPost library
Send by: VSayako Willy Hi Enrique & all I know that the GiDPost library is used for PostProcessing purpose. Actually I have read all over but still confused with the process. What is an advantage of using GiDPost over normal way of writing the postprocessing by our own source code. Best regards __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! http://webhosting.yahoo.com/ps/sb/ [GiDlist] GiDPost library
Send by: Enrique Escolano And advantage is for analyis with a very big result file, instead to write an ASCII file is possible to write a smaller compressed binary (also is faster readed). Al another advantage is to avoid errors writting the postprocess file, specially for a binary format!! And if the format is changed in a future, the library is updated by our team, and the external developer only need to update an re-compile. Regards Enrique Escolano ----- Original Message ----- From: "VSayako Willy" <vilaysako at yahoo.com> To: <gidlist at gatxan.cimne.upc.es... [GiDlist] GiDPost library
Send by: Malte Neumann Hi, just a follow-up question about binary postprocess files: If I use GiD on a Windows System and my calculation program runs on a Linux or Unix System, is it possible to use binary postprocess files, or is the format of the binary files machine dependent. Thanks for your advice. Malte On Thu, Jan 22, 2004 at 10:47:09AM +0100, Enrique Escolano wrote: > And advantage is for analyis with a very big result file, instead to write > an ASCII file is possible to write a smaller compressed binary (also is > faster readed). > Al another advantage is to avoid errors writting the postprocess file, > specially for a binary format!! ... [GiDlist] GiDPost library
Send by: Miguel A. Pasenau de Riera The binary format is platform independent, so the binary files created in windows can ver read in linux, silicon, etc. And viceversa. miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Malte Neumann Enviado el: jueves, 22 de enero de 2004 11:23 Para: gidlist at gatxan.cimne.upc.es Asunto: Re: [GiDlist] GiDPost library Hi, just a follow-up question about binary postprocess files: If I use GiD on a Windows System and my calculation program runs on a Linux or Unix System, is it possible to use binary postprocess files, or is the format of the binary files machine dependent. Thanks for your advice. Malte On Thu, Jan 22, 2004 at 10:47:09AM +0100, Enrique Escolano wrote: >... [GiDlist] GiDPost library
Send by: Khaled Obeidat Hi miguel, I have been searching the GID help files for description of how to use the GiDPost library, since I'm using huge ASCII result file. However I found nothing, could you please show me where i can find more information about it? Khaled At 05:51 AM 1/22/2004, you wrote: >The binary format is platform independent, so the binary files created in >windows can ver read in linux, silicon, etc. And viceversa. > >miguel > >-----Mensaje original----- >De: gidlist-admin at gatxan.cimne.upc.es >... [GiDlist] GiDPost library
Send by: Enrique Escolano Can read more information, and download the source code (and compiled library for Windows) on our web page http://www.gidhome.com/support/gidpost.subst Enrique Escolano ----- Original Message ----- From: Khaled Obeidat To: gidlist at gatxan.cimne.upc.es Sent: Thursday, January 22, 2004 2:46 PM Subject: RE: [GiDlist] GiDPost library Hi miguel, I have been searching the GID help files for description of how to use the GiDPost library, since I'm using huge ASCII result file. However I found nothing, could you please show me where i can find more information about it? Khaled At 05:51 AM 1/22/2004, you wrote: The binary format is platform independent, so the binary files created in windows can ver read in linux, silicon, etc. And viceversa. miguel -----Mensaje original----- De: ... [GiDlist] DEPENDENCIES & #N#
Send by: VSayako Willy Hi Enrique & GiD team How can we use the command DEPENDENCIES with the following fields: QUESTION:Lrange(A1,A2,A3) VALUE:#N# 3 1 2 3 I tried as usual way but didn't work out. Regards __________________________________ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html [GiDlist] DEPENDENCIES & #N#
Send by: Jorge Suit Pérez Ronda Hi, if you want to modify the vale of table field ussing a DEPENDENCIES
you should enclose the value between ", for instance
question: Change#CB#(3,6)
value: 3
dependencies: (3, restore, Lrange, "#N# 3 1 2 3")
(6, restore, Lrange, "#N# 6 1 2 3 4 5 6")
question: Lrange(A1,A2,A3)
value: #N# 3 1 2 3
regards,
Jorge Suit
On Fri, 2004-02-06 at 09:32, VSayako Willy wrote:
> Hi Enrique & GiD team
>
> How can we use the command DEPENDENCIES with the
> following fields:
>
> QUESTION:Lrange(A1,A2,A3)
> VALUE:#N# 3 1 2 3
>
>
>...
[GiDlist] DEPENDENCIES & #N#
Send by: VSayako Willy Hi Jorge Suit I have tried as your advice but it's still not working. I used GiD 7.2 Regards. --- Jorge Suit Pérez Ronda <ronda at cimne.upc.es> wrote: > Hi, if you want to modify the vale of table field > ussing a DEPENDENCIES > you should enclose the value between ", for instance > > question: Change#CB#(3,6) > value: 3 > dependencies: (3, restore, Lrange, "#N# 3 1 2 3") > (6, restore, Lrange, "#N# 6 1 2 3 4 5 > 6") > question: Lrange(A1,A2,A3) ... [GiDlist] DEPENDENCIES & #N#
Send by: Jorge Suit Pérez Ronda Please, try the last beta version 7.4.6b On Mon, 2004-02-09 at 05:32, VSayako Willy wrote: > Hi Jorge Suit > > I have tried as your advice but it's still not > working. I used GiD 7.2 > > Regards. > > > --- Jorge Suit Prez Ronda <ronda at cimne.upc.es> wrote: > > Hi, if you want to modify the vale of table field > > ussing a DEPENDENCIES > > you should enclose the value between ", for instance > > >... [GiDlist] Some small problems
Send by: Andrea Calaon Hi everyone,
before Christmas I sent this mail, but it probably
went missed in the holiday rush. I send it again
hoping not to disturb.
Have a nice day!
----------------------------------------------------------
Hi everyone,
I have two minor problems I would like to get rid of:
In EndGIDProject I use this code:
if { $NewProblemType == "Yes" } {
after 1000 RestoreColors
}
but the RestoreColors doesn't work properly, and
sometimes I need to give the same open command
twice for opening a .gid "directory-file". Is there
any other more reliable way to restore the original
colours without using the "after command"?
(changing the time delay doesn't eliminate the
problem).
WhenI open a file that belongs to my ProblemType
having the ProblemType already loaded I always
receive this message:
Project 'utilities' doesn't exist or it is a problem
type. Leaving.
Apart from the message itself, this hasn't caused
any more troubles and I normally just close the
dialog.
I have no Idea where this could come from, and I
tried to modify something but nothing has worked
...
Thanks in advance for any suggestions
Best Regards
-------------------------------------------------------
Recently I have also experienced some difficulties
with the post-processing command "Do cuts - Divide
by selection": I loose the selection possibility once I
pan, rotate or zoom the model view.
Kind Regards
Andrea Calaon
Ashurst Lodge, Ashurst
Southampton, Hampshire
SO40 7AA, UK
Tel. office: +44 23 80 293 223
Fax office: +44 23 80 292 853
Mobile: +44 7766 488 225
E-mail: ...
[GiDlist] Some small problems
Send by: Enrique Escolano Hello Andrea. Send me a zip file with your current problemtype (the analysis code is not necessary), the make some tests. Note: send directly to escolano at cimne.upc.es Enrique Escolano ----- Original Message ----- From: "Andrea Calaon" <andrea at beasy.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Thursday, January 15, 2004 12:49 PM Subject: [GiDlist] Some small problems > Hi everyone, > before Christmas I sent this mail, but it probably ... [GiDlist] Postprocess: Motion to parts while playing animation
Send by: Javier Jimenez Hi everybody, Appreciate to be advised how to write a batch file in order to apply motion (for example: up and down-simulating an stroke action of several mms- and or a rotation of some degrees) to different parts of an assembly while playing animation. Thank you. Regards, Javier Jimenez -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040115/df7908a1/attachment.htm [GiDlist] Postprocess: Motion to parts while playing animation
Send by: Enrique Escolano Activate the preference "Write batch file" (Utilities->Preferences), and set the batch filename. Then all commands are registered inside this batch file. Then make manually the desired motions (translations, rotations, etc) using the "Move" tool (Utilities->Move), and selecting the desired entities to move. After this, can repeat this batch file, for example with utilities->Graphical->Read batch window (can run it step by step, etc.) With Utilities->Graphical->Animation controls can also save all screen redraws inside an avi or mpeg animation file. Enrique Escolano ----- Original Message ----- From: Javier Jimenez To: ... [GiDlist] unstructured meshing
Send by: Mark Smith Hi all if any one in interested in being able to produce quad dominated unstructured meshes take a look at the free software netgen at http://www.hpfem.jku.at/netgen/ this would be a nice feature in GiD ! regards mark --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.561 / Virus Database: 353 - Release Date: 13/01/2004 The information contained in this e-mail message (and any attachment transmitted herewith) is privileged and confidential and is intended for the exclusive use of the addressee(s). If you are not an addressee, any disclosure, reproduction, distribution or other dissemination or use of this communication is strictly prohibited. If you have received this communication in error, please contact us immediately so that we can correct the error. ... [GiDlist] Problems with to extract conditions with .bas
Send by: Hubert at deltacad.fr Hello, I have some problems to extract conditions. During execution of .bas file the conditions number is changed from 6 to 0. So conditions seem to disapear. test1 is the probleme type definition, t11 is a very simple project. Thanks for your help -------------- next part -------------- A non-text attachment was scrubbed... Name: t11.gid.zip Type: application/x-zip-compressed Size: 2073 bytes Desc: not available Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040116/bbd01b94/attachment.bin -------------- next part -------------- A non-text attachment was scrubbed... Name: test1.gid.zip Type: application/x-zip-compressed Size: 3236 bytes Desc: not available Url : ... [GiDlist] Problems with to extract conditions with .bas
Send by: Enrique Escolano In your code, first are set/add the conditions Groupe_de_mailles_sur_lignes, Groupe_de_mailles_sur_surfaces,Groupe_de_mailles_sur_volumes *Set Cond Groupe_de_mailles_sur_lignes *elems *Add Cond Groupe_de_mailles_sur_surfaces *elems *Add Cond Groupe_de_mailles_sur_volumes *elems NumberOfCond *CondNumEntities This command internally creates a table of entities with this condition, to make after a fast loop elems onlyincond. CondNumEntities contain then the number of elements (all types) with this condition: 6 line elements in your sample Then you used *set elems(linear) This select only line mesh elements (not triangles, etc) And then use other time *Set Cond Groupe_de_mailles_sur_lignes *elems *Add Cond Groupe_de_mailles_sur_surfaces *elems *Add Cond Groupe_de_mailles_sur_volumes *elems NumberOfCond *CondNumEntities Then is created a table of the line elements with this condition : 6 line elements in your sample then you used *set elems(triangle) ... *Set Cond Groupe_de_mailles_sur_lignes *elems *Add Cond Groupe_de_mailles_sur_surfaces *elems *Add Cond Groupe_de_mailles_sur_volumes *elems NumberOfCond *CondNumEntities And in this last case, not exists any triangle element with this conditions If you want all element types, after *set elems(triangle), must use *set elems(all) Regards Enrique Escolano ----- Original Message ----- From: <... [GiDlist] Boundary conditions
Send by: Alex Hi all, can I apply boundary conditions to a fluid dynamics TYDN3D analysis via batch file? Thanks, Alessandro Rovera [GiDlist] Boundary conditions
Send by: Enrique Escolano You can apply conditions with a batch file with: escape escape escape escape data conditions assign <condition name> change <values> <list of entities to apply> for example escape escape escape escape data conditions assign Line-Constraints change 1 0.0 1 0.0 1 0.0 1 3:5 To apply the condition Line-Constraints wit values 1 0 1 0 1 0 to the entitites 1, 3, 4, and 5 Regards Enrique Escolano ----- Original Message ----- From: "Alex" <rovera.alessandro at libero.it> To: "GID" <gidlist at gatxan.cimne.upc.es... [GiDlist] Boundary conditions
Send by: Alex Enrique Escolano wrote: >You can apply conditions with a batch file with: > >escape escape escape escape data conditions assign <condition name> change ><values> ><list of entities to apply> > >for example >escape escape escape escape data conditions assign Line-Constraints change 1 >0.0 1 0.0 1 0.0 >1 3:5 >To apply the condition Line-Constraints wit values 1 0 1 0 1 0 to the >entitites 1, 3, 4, and 5 > >Regards >Enrique Escolano > >----- Original Message ----- >From: "Alex" <... [GiDlist] Boundary conditions
Send by: Enrique Escolano To apply over mesh, before must change to mesh visualization escape escape escape meshing meshviev and then apply the condition (the same as a manual application of conditions to mesh entities) Enrique ----- Original Message ----- From: "Alex" <rovera.alessandro at libero.it> To: <gidlist at gatxan.cimne.upc.es> Sent: Tuesday, January 20, 2004 9:17 PM Subject: Re: [GiDlist] Boundary conditions > Enrique Escolano wrote: > > >You can apply conditions with a batch file with: ... [GiDlist] Motion to patrs while playing animation
Send by: Javier Jimenez Hi Enrique, Thanks for your quick replay to my inquiry. I created the batch file with some motions of a part, but being at Read batch window I can't run it step by step. Explanations shown on the GiD_Ref_Manual (pag 93) did not help much, would you please clarify this point?. Also some additional help on how to use Animation controls to save the above inside an avi file. Thank you, Javier Jimenez -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040117/aa0f873f/attachment.htm... [GiDlist] Simple question about right/left-handed axes?
Send by: Roger Young Is it possible to specify the "handedness" of the GiD global axes? in a consistent way? Sometimes the GUI axes appear right-handed and sometimes left-handed!! (at least so it seems to me) Regards, Roger Young. Applied Maths Group Industrial Research Ltd., Box 31-310 Lower Hutt New Zealand. [GiDlist] Simple question about right/left-handed axes?
Send by: Enrique Escolano I don't understand you. The global axes are always the same: (1,0,0) (0,1,0) (0,0,1), centered at (0,0,0). (but for view pourposes, this axes are not drawn at (0,0,0), it are drawn in a fixed screen location). When your rotate the view you only change the user viewpoint, but not change the model coordinates or the global axes. Enrique Escolano ----- Original Message ----- From: "Roger Young" <r.young at irl.cri.nz> To: <gidlist at gatxan.cimne.upc.es> Cc: <r.young at irl.cri.nz... [GiDlist] Graph
Send by: Khaled Obeidat > > >Hi, > >In postprocessing there under the view result there is graph showing >option. I know the file format but I don't know the file extension so that >GId can read and display these result. > >Thanks in advance, > ># Graf: "Impedance vs. Frequency" ># ># X: " Frequency (Hz)" Y: "Impedance (Ohm)" >4.44839e+007 526.412 >4.44949e+007 517.423 >4.45059e+007 493.113 >4.45169e+007 459.392 ># End > > >Khaled Obeidat >Research Engineer ... [GiDlist] Graph
Send by: Enrique Escolano You can modify the standard postprocess menus from tcl, and your own menu must invoke this process command:
escape escape escape Results Graphs ReadGraph "filename"
Note: See the problemtype Ramseries as sample to change the postproces menus
Enrique Escolano
----- Original Message -----
From: Khaled Obeidat
To: Enrique Escolano
Sent: Tuesday, January 20, 2004 11:19 PM
Subject: Re: Graph
But there is View Result menu in post processing from which you choose Graphs and then Show. how can I make use of it?
The reason why I'm interested of using that command is that I have many graphs and i want to put them in one single file and let GID display them individually according to the user choice.
At 04:58 PM 1/20/2004, you wrote:
GiD not require a specific extension for graphs (must use .grf for example)
To read a graph file from postprocess, must use:
escape escape escape Results Graphs ReadGraph "filename"
Enrique Escolano
----- Original Message -----
From: Khaled Obeidat
To: ...
[GiDlist] Graph
Send by: Khaled Obeidat Thank you -- but is it possible to include more than one graph in one single ASCII file. At 04:51 AM 1/21/2004, you wrote: >You can modify the standard postprocess menus from tcl, and your own menu >must invoke this process command: > >escape escape escape Results Graphs ReadGraph "filename" >Note: See the problemtype Ramseries as sample to change the postproces menus > >Enrique Escolano >----- Original Message ----- >From: <mailto:kobeidat at emagtechnologies.com>Khaled Obeidat ... [GiDlist] Graph
Send by: Enrique Escolano At this moment each graph must be in a separate file. Maybe for next GiD versions it will be possible to contain multiple graphs. Enrique ----- Original Message ----- From: Khaled Obeidat To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, January 21, 2004 3:21 PM Subject: Re: [GiDlist] Graph Thank you -- but is it possible to include more than one graph in one single ASCII file. At 04:51 AM 1/21/2004, you wrote: You can modify the standard postprocess menus from tcl, and your own menu must invoke this process command: escape escape escape Results Graphs ReadGraph "filename" Note: See the problemtype Ramseries as sample to change the postproces menus Enrique Escolano ----- Original Message ----- From: Khaled Obeidat To: Enrique Escolano Sent: Tuesday, January 20, 2004 11:19 PM Subject: Re: Graph But there is View Result menu in post processing from which you choose Graphs and then Show. how can I make use of it? The reason why I'm interested of using that command is that I have many graphs and i want to put them in one single file and let GID display them individually according to the user choice. At 04:58 PM 1/20/2004, you wrote: GiD not require a specific extension for graphs (must use .grf for example) To read a graph file from postprocess, must use: escape escape escape Results Graphs ReadGraph "filename" Enrique Escolano ----- Original Message ----- From: Khaled Obeidat To: ... [GiDlist] mesh size. ruler?
Send by: Oguz Tanzer Hello, I couldn't find a a "ruler" or similar thing that shows the length or dimensions of an object. For example if you plot a line how do you see its dimensions or its lenght on the screen? You can guess or determine the dimensions from the coordinates you give, but how can you know the dimensions of an object, if you are plotting an arbitrary object, for example, NURBS curves you draw with mouse? Is there way to check its size after you draw it? Regards, Oguz __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! http://webhosting.yahoo.com/ps/sb/... [GiDlist] mesh size. ruler?
Send by: Enrique Escolano You can ask, for example, the distance between two new or existent points with the menu: Utilities->Distance Trick: Control-A is a useful key to change between pick a new or a old point It's useful also to ask the coordinates of a point with the menu: Utilitites->Id You can display the current mouse coordinates (z = 0) setting the appropiate preference: Utilities->Preferences: General - Display coordinates You can also list the properties of the selected entities with Utilities->List-> ... You can draw some auxiliary dimensions (Utilities->Dimensions->Create-> ...) to point some 3D coordinate, a distance, an angle, etc. Regards Enrique Escolano ----- Original Message ----- From: "Oguz Tanzer" <... [GiDlist] Preprocess Files
Send by: dganit Hello everyone, I want to open a pre-defined file in the preprocss, that already contains the "shape" information. Is it possible, and if it is how can I do it ? Thanks, Dganit -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040128/0c31d4dc/attachment.htm [GiDlist] Preprocess Files
Send by: Enrique Escolano I don't understand your question. If do you want to add a previous model to the current one, must use the menu: Files->Import->Insert GiD Geometry... Regards Enrique Escolano ----- Original Message ----- From: dganit To: gidlist at gatxan.cimne.upc.es ; dganit at evs.co.il Sent: Tuesday, January 27, 2004 7:25 PM Subject: [GiDlist] Preprocess Files Hello everyone, I want to open a pre-defined file in the preprocss, that already contains the "shape" information. Is it possible, and if it is how can I do it ? Thanks, Dganit -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Preprocess Files
Send by: dganit I want to create the geometry outside GiD. What should be the format of the file to be able to do so ? Thanks, Dganit ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, January 28, 2004 1:29 PM Subject: Re: [GiDlist] Preprocess Files I don't understand your question. If do you want to add a previous model to the current one, must use the menu: Files->Import->Insert GiD Geometry... Regards Enrique Escolano ----- Original Message ----- From: dganit To: gidlist at gatxan.cimne.upc.es... [GiDlist] Preprocess Files
Send by: Enrique Escolano I attach a not oficial documentation, written in spanish, about the GiD *.geo ASCII format. Regards Enrique Escolano ----- Original Message ----- From: dganit To: gidlist at gatxan.cimne.upc.es Sent: Thursday, January 29, 2004 9:22 PM Subject: Re: [GiDlist] Preprocess Files I want to create the geometry outside GiD. What should be the format of the file to be able to do so ? Thanks, Dganit ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.es... [GiDlist] Preprocess Files
Send by: Ramon Ribó
Hello,
If you want to create geometry outside of GiD and import it in GiD,
you should
use one of the standard geometry interchange files that GiD supports,
These are
the following: DXF, IGES, PARASOLID, ACIS.
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com <http://www.compassis.com/>
ramsan at compassis.com
c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82
08034 Barcelona, Spain fax. +34 93 204 19 09
-----Mensaje original-----
De: ...
[GiDlist] Preprocess Files
Send by: Khaled Obeidat Hello Gid Team, I have indeed wrote my data on ASCII Techplot format for 3D structures but GID keep crashing when I import the *.dat file for the first try, when I re open GID and import the file, GID work. Best Regards, At 05:01 AM 1/30/2004, you wrote: >I attach a not oficial documentation, written in spanish, about the GiD >*.geo ASCII format. > >Regards > >Enrique Escolano >----- Original Message ----- >From: <mailto:dganit at hahotrim.com>dganit >To: <mailto:gidlist at gatxan.cimne.upc.es... [GiDlist] Preprocess Files
Send by: Enrique Escolano Please, send us this Tecplot sample file to check it. (send directly to escolano at cimne.upc.es) Enrique Escolano ----- Original Message ----- From: Khaled Obeidat To: gidlist at gatxan.cimne.upc.es Sent: Friday, January 30, 2004 4:00 PM Subject: Re: [GiDlist] Preprocess Files Hello Gid Team, I have indeed wrote my data on ASCII Techplot format for 3D structures but GID keep crashing when I import the *.dat file for the first try, when I re open GID and import the file, GID work. Best Regards, At 05:01 AM 1/30/2004, you wrote: I attach a not oficial documentation, written in spanish, about the GiD *.geo ASCII format. Regards Enrique Escolano ----- Original Message ----- From: dganit To: ... [GiDlist] Viewing results on Gauss Points
Send by: Louis Christophe Hello, I am currently studying problems for which I would like to view different fields on Gauss Points, and I have a question about the post-processing of such problems. In some cases, I have triangles and quadrilaterals together. So I have to define two kinds of Gauss points (for triangles and quadrilaterals), but the problem is that, in the post-processing, I don't know how to view simultaneously the results on these two kinds of elements. Louis Christophe Open Engineering SA Spatiopôle, WSL - Parc Scientifique du Sart Tilman Rue des Chasseurs Ardennais B-4031 Angleur-Liège (Belgium) Tel: (+32/0)4.372.93.45 - Fax: (+32/0)4.372.93.21 www.open-engineering.com -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Viewing results on Gauss Points
Send by: Enrique Escolano At this moment, it's not possible to simultaneously show this triangle and quadrilateral results. A trick to solve this is to write an auxiliary mesh "*.flavia.msh", for postprocess pourposes only, splitting each quadrilateral in two triangles. Enrique Escolano ----- Original Message ----- From: Louis Christophe To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, January 28, 2004 10:28 AM Subject: [GiDlist] Viewing results on Gauss Points Hello, I am currently studying problems for which I would like to view different fields on Gauss Points, and I have a question about the post-processing of such problems. In some cases, I have triangles and quadrilaterals together. So I have to define two kinds of Gauss points (for triangles and quadrilaterals), but the problem is that, in the post-processing, I don't know how to view simultaneously the results on these two kinds of elements. Louis Christophe Open Engineering SA Spatiopôle, WSL - Parc Scientifique du Sart Tilman Rue des Chasseurs Ardennais B-4031 Angleur-Liège (Belgium) Tel: (+32/0)4.372.93.45 - Fax: (+32/0)4.372.93.21 www.open-engineering.com -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] gid and boundary conditions
Send by: Anke Griesbaum Dear Gidlist-members! I'd be appreciate if You had the time for one question! Is it possible to assign boundary conditions in GID7.2 Academical Version? The 'conditions window' in the data menu is not existent! Anke Griesbaum [GiDlist] Cant see any contour lines
Send by: Ambrose Thompson Hello, I wonder if someone can shed some light on this. At the postprocess stage I import several meshes and results. My result file follows this pattern ..... GaussPoints "pexterior" Elemtype Linear "POLAR" Number of Gauss Points: 1 Natural Coordinates: internal End GaussPoints GaussPoints "nexterior" Elemtype Quadrilateral "NORMAL" Number of Gauss Points: 1 Natural Coordinates: internal End GaussPoints .... etc etc then a series of results of the form Result "P Phase Pol" "Analysis Name" 1 Scalar OnGaussPoints "pexterior" Values ... ... End Values Result "P Phase Nor" "Analysis Name" 1 Scalar OnGaussPoints "nexterior" Values ... ... End Values The MSH file is of the form MESH NORMAL DIMENSION 3 ELEMTYPE QUADRILATERAL NNODE 4 COORDINATES ... END COORDINATES ELEMENTS ... END ELEMENTS MESH POLAR DIMENSION 3 ELEMTYPE LINEAR NNODE 2 COORDINATES ... END COORDINATES ELEMENTS The problems I am having is displaying contour lines and viewing multiple results and using border graphs. When I select contour lines I only see the borders and a small coloured cross - however, contour fill worked just fine. I would like to display all the results and I cant seem to get 'Several' results to work (I select 'one over another' and each time I change the result it defualts back to 'one by one' and disposes of the previous result id). In addition when trying to select a border for border graph I am unable to do so. What am I doing wrong Thanks Ambrose The Information in this e-mail is confidential and may be legally privileged. It may not represent the views of Martin Audio Limited. It is solely for the addressees. Access to this e-mail by anyone else is unauthorised. If you are not the intended recipient, any disclosure, copying, distribution, or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful. Any unauthorised recipient should advise the sender immediately of the error in transmission. ... [GiDlist] strange visualization of quadrilateral elements
Send by: Billy Fälth Hello I have a problem sometimes when I postprocess models with quadrilateral elements (structured mesh). Every element is divided in two triangles (i.e. there is a diagonal drawn through every element) and only one of these triangles is visible. Anyone who has any idea of how to solve this problem? I am using GID 7.2 and 7.4.4b on Win XP. My graphic card is a NVIDIA Geforce3 Ti200. regards Billy Fälth Clay Technology AB Ideon Research Center S 223 70 Lund, SWEDEN Tel +46 46 286 25 81 Fax +46 46 13 42 30 www.claytech.se <http://www.claytech.se/> -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] strange visualization of quadrilateral elements
Send by: Enrique Escolano Try to deactivate the graphic card acceleration from the Operating System (Screen properties->Advanced options->Solve problems...) Search also in the web page of your card if there are actualized drivers for your graphic card. Enrique Escolano ----- Original Message ----- From: Billy Fälth To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, February 04, 2004 1:05 PM Subject: [GiDlist] strange visualization of quadrilateral elements Hello I have a problem sometimes when I postprocess models with quadrilateral elements (structured mesh). Every element is divided in two triangles (i.e. there is a diagonal drawn through every element) and only one of these triangles is visible. Anyone who has any idea of how to solve this problem? I am using GID 7.2 and 7.4.4b on Win XP. My graphic card is a NVIDIA Geforce3 Ti200. regards Billy Fälth Clay Technology AB Ideon Research Center S 223 70 Lund, SWEDEN Tel +46 46 286 25 81 Fax +46 46 13 42 30 www.claytech.se -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] strange visualization of quadrilateral elements
Send by: Miguel A. Pasenau de Riera The conectivities of your cuadrilaterals are the correct ones? they should be counterclockwise (http://www.gidhome.com/support/gid_16.subst#cuad4.gif) miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Enrique Escolano Enviado el: miércoles, 04 de febrero de 2004 14:10 Para: gidlist at gatxan.cimne.upc.es... [GiDlist] Techplot File
Send by: Khaled Obeidat Hello,
When I import my techplot file from the postprocessing, the data that was
loaded from my .res file will gone and I have to switch to the
preprocessing and come back to postprocessing to have my .res file data
loaded again.
I use the following code to do so:
proc Etot {} {
.central.s process escape file new yes
set list [.central.s info Project]
set proj [lindex $list 1]
set proj [file join $proj.gid [file tail $proj]]
.central.s process escape file readtecplot $proj.dat
}
Best Regards,
Khaled
Khaled Obeidat
Research Engineer
EMAG Technologies, Inc.
www.emagtechnologies.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] finite element mailing-list
Send by: Ilker Basol Dear GID team, Can someone suggest me a few good mailing-lists where I can ask questions about finite element method ? Thanks ahead, ilker [GiDlist] meshing problem
Send by: Khaled Obeidat Hello, I'm having difficulties of meshing the following structure into points when I choos the elemnt size to be 3.3, but when it is 3.2 it work. Attached are the project and the error message. Thanks Khaled Obeidat Research Engineer EMAG Technologies, Inc. www.emagtechnologies.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040205/be6a6a47/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: warshipVol1.zip Type: application/zip Size: 52376 bytes Desc: not available Url : ... [GiDlist] RE: Please!!!!!!!!! I WANT TO UNSUBSCRIBE
Send by: Franco Di Persio I would like to unsubcribe from GIDList!!! Please!! I don't remember my password. Would you send to me? ----------------------------------------------------- Por Favor!! Quiero borrarme de la lista de GID Pero no recuerdo la palabra llave. ¿Me la podeis enviar? Franco Di Persio Mailto:franco.di-persio at jrc.nl [GiDlist] RE: Please!!!!!!!!! I WANT TO UNSUBSCRIBE
Send by: Enrique Escolano Any user can unsuscribe itself from the web page http://www.gidhome.com/mailman/listinfo/gidlist In this page, set your user e-mail, for example escolano at cimne.upc.es, an press the Edit Options button To change your subscription (set options like digest and delivery modes, get a reminder of your password, or unsubscribe from GiDlist), enter your subscription email address: Then it appear a new page where can unsuscribe. If you don't remember your password (as useful), then press the button "Email My Password To Me" Regards Enrique Escolano ----- Original Message ----- From: "Franco Di Persio" <... [GiDlist] Gid on UNIX
Send by: Khaled Obeidat Hello, I'm having also a difficulties of running my code on UNIX platform and then using the postprocessing to visualize my data. I write my data in dB format in the .res file and on UNIX the log(0) will be printed as (-inf) but in windows it is (-1.#INF), for some reason GID can just read the windows format and I don't know why. regards, Khaled Obeidat Research Engineer EMAG Technologies, Inc. www.emagtechnologies.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040205/f1f853ff/attachment.htm... [GiDlist] Gid on UNIX
Send by: Enrique Escolano -inf or -1.#INF is not a valid number for postprocess files. Must change your program and avoid all undefined mathematical operations (log(0), x/0) , etc. and write a big number to represent for postprocess a infinite value (for example, isntead -inf , write 1e30 or some similar) Enrique Escolano ----- Original Message ----- From: Khaled Obeidat To: gidlist at gatxan.cimne.upc.es Sent: Thursday, February 05, 2004 5:04 PM Subject: [GiDlist] Gid on UNIX Hello, I'm having also a difficulties of running my code on UNIX platform and then using the postprocessing to visualize my data. I write my data in dB format in the .res file and on UNIX the log(0) will be printed as (-inf) but in windows it is (-1.#INF), for some reason GID can just read the windows format and I don't know why. regards, Khaled Obeidat Research Engineer EMAG Technologies, Inc. www.emagtechnologies.com -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] create box
Send by: Khaled Obeidat Hello, Is there a way to create a bunch of lines Automatically where each line will has its own points even if these points share the same physical position. Best Regards, Khaled Obeidat Research Engineer EMAG Technologies, Inc. www.emagtechnologies.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040206/8c12d01a/attachment.htm [GiDlist] create box
Send by: Enrique Escolano I don't understand exactly your question, but you can set the preference "Create new point" to "always" to create superposed points if you are create the lines by hand. If you use the copy window, you can check the flag "Duplicate entities" to not collapse entities sharing the same location. Enrique Escolano ----- Original Message ----- From: Khaled Obeidat To: gidlist at gatxan.cimne.upc.es Sent: Friday, February 06, 2004 11:26 PM Subject: [GiDlist] create box Hello, Is there a way to create a bunch of lines Automatically where each line will has its own points even if these points share the same physical position. Best Regards, Khaled Obeidat Research Engineer EMAG Technologies, Inc. www.emagtechnologies.com -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] create box
Send by: Khaled Obeidat What I want is to let the user visualize a box, the box could be surrounding the structure or could overlap with it, after the user visualize that domain I want to delete this box since I don't want it to be part of the mesh . I use the following code : ############################# .central.s process escape escape escape escape geometry create NurbsLine Number $FLp1 $x0 $y0 $z0 $x1 $y0 $z0 escape escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp2 $x1 $y0 $z0 old $x1 $y1 $z0 escape escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp3 $x1 $y1 $z0 old $x0 $y1 $z0 escape escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp4 $x0 $y1 $z0 old $x0 $y0 $z0 old escape escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp5 $x0 $y0 $z1 $x1 $y0 $z1 escape escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp6 $x1 $y0 $z1 old $x1 $y1 $z1 escape escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp7 $x1 $y1 $z1 old $x0 $y1 $z1 escape escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp8 $x0 $y1 $z1 old $x0 $y0 $z1 old escape escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp9 $x0 $y0 $z0 old $x0 $y0 $z1 old escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp10 $x1 $y0 $z0 old $x1 $y0 $z1 old escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp11 $x1 $y1 $z0 old $x1 $y1 $z1 old escape .central.s process escape escape escape escape geometry create NurbsLine Number $FLp12 $x0 $y1 $z0 old $x0 $y1 $z1 old escape ######################################################## For the first command line the box will not be drawn if the point is already exist without adding the word "new" but if i add the word "new" and there was not point same thing will happen. Thank you. At 07:18 AM 2/9/2004, you wrote: >... [GiDlist] create box
Send by: Enrique Escolano It's not necessary to create and delete geometric curve entities. It exists a new feature to directly draw inside GiD
with OpenGL commands, using the tcl drawopengl procedure. It's a undocumented feature.
I attach a small problemtype, as sample to draw an auxiliary box around the model.
This is the file DrawBox.tcl content:
proc InitGIDProject { dir } {
global DrawBox
set DrawBox(drawopengl) [drawopengl register testdrawbox]
}
proc EndGIDProject {} {
global DrawBox
drawopengl unregister $DrawBox(drawopengl)
catch { unset DrawBox }
}
proc testdrawbox { { color "0 0 0" } } {
foreach {xmax ymax zmax xmin ymin zmin} [lindex [.central.s info layers -bbox] 0] break
drawopengl draw -color $color -begin lineloop
drawopengl draw -vertex "$xmin $ymin $zmin"
drawopengl draw -vertex "$xmax $ymin $zmin"
drawopengl draw -vertex "$xmax $ymax $zmin"
drawopengl draw -vertex "$xmin $ymax $zmin"
drawopengl draw -end
drawopengl draw -color $color -begin lineloop
drawopengl draw -vertex "$xmin $ymin $zmax"
drawopengl draw -vertex "$xmax $ymin $zmax"
drawopengl draw -vertex "$xmax $ymax $zmax"
drawopengl draw -vertex "$xmin $ymax $zmax"
drawopengl draw -end
drawopengl draw -color $color -begin lines
drawopengl draw -vertex "$xmin $ymin $zmin"
drawopengl draw -vertex "$xmin $ymin $zmax"
drawopengl draw -vertex "$xmax $ymin $zmin"
drawopengl draw -vertex "$xmax $ymin $zmax"
drawopengl draw -vertex "$xmax $ymax $zmin"
drawopengl draw -vertex "$xmax $ymax $zmax"
drawopengl draw -vertex "$xmin $ymax $zmin"
drawopengl draw -vertex "$xmin $ymax $zmax"
drawopengl draw -end
}
Regards
Enrique Escolano
----- Original Message -----
From: Khaled Obeidat
To: ...
[GiDlist] graphs at gauss points
Send by: Jose Antonio Fernandez Dear Gid Team, is it possible to plot graphs (for instance: Graphs-PointAnalysis-) with results at gauss point? Thank you, best regards, Jose Antonio [GiDlist] graphs at gauss points
Send by: Enrique Escolano At this moment, this feature is not implemented yet. It's a task for next GiD versions. Regards Enrique Escolano ----- Original Message ----- From: "Jose Antonio Fernandez" <Jose.A.Fernandez at cedex.es> To: <gidlist at gatxan.cimne.upc.es> Sent: Monday, February 09, 2004 5:15 PM Subject: [GiDlist] graphs at gauss points > Dear Gid Team, > > is it possible to plot graphs (for instance: Graphs-PointAnalysis-) with > results at gauss point? ... [GiDlist] Preproces - Import File
Send by: dganit Hello all, I have a file containing information of a mesh (i.e. coordinates and elements info). Is it possible to create a GiD project only with this data and open it as a project in the preprocess ? Thanks, Dganit -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040211/eb6f2499/attachment.htm [GiDlist] Preproces - Import File
Send by: Enrique Escolano Copy this GiD mesh, for example named "test.msh", inside a directory named "test.gid". It's needed also a .geo file, copy a "test.geo" file, renamed from another GiD model. After load, can delete the undesired geometric entities of this model. Enrique Escolano ----- Original Message ----- From: dganit To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, February 11, 2004 9:21 PM Subject: [GiDlist] Preproces - Import File Hello all, I have a file containing information of a mesh (i.e. coordinates and elements info). Is it possible to create a GiD project only with this data and open it as a project in the preprocess ? Thanks, Dganit -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Preproces - Import File
Send by: dganit Hello Enrique, There are no example files attached to your message. Can you pkease re-send your message with the attached files ? Thanks, Dganit ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.es Sent: Thursday, February 12, 2004 11:41 AM Subject: Re: [GiDlist] Preproces - Import File Copy this GiD mesh, for example named "test.msh", inside a directory named "test.gid". It's needed also a .geo file, copy a "test.geo" file, renamed from another GiD model. After load, can delete the undesired geometric entities of this model. Enrique Escolano ----- Original Message ----- From: dganit To: ... [GiDlist] Preproces - Import File
Send by: Enrique Escolano Not, I did non attach any file. I speak about your *.mesh file, and a generic *.geo (open GiD, save the model, and use this geo) Enrique ----- Original Message ----- From: dganit To: gidlist at gatxan.cimne.upc.es Sent: Friday, February 13, 2004 12:57 PM Subject: Re: [GiDlist] Preproces - Import File Hello Enrique, There are no example files attached to your message. Can you pkease re-send your message with the attached files ? Thanks, Dganit ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.es... [GiDlist] Preproces - Import File
Send by: Ramon Ribó
Hello,
To import a mesh inside GiD, you mush use:
Files->Import->GiD mesh
If you want to make it become automatically a project, you must create a
batch file
that imports the mesh and saves a project.
You can make GiD do this without opening any window by calling GiD with
something like: gid -n ... (check the help for details)
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com <http://www.compassis.com/>
ramsan at compassis.com
c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82
08034 Barcelona, Spain fax. +34 93 204 19 09
-----Mensaje original-----
De: ...
[GiDlist] Preproces - Import File
Send by: Enrique Escolano MensajeNote: Can use Files->Import->GiD mesh Only if the file is written in GiD mesh ASCII format, but not if the file is binary format. Enrique ----- Original Message ----- From: Ramon Ribó To: gidlist at gatxan.cimne.upc.es Sent: Thursday, February 12, 2004 3:02 PM Subject: RE: [GiDlist] Preproces - Import File Hello, To import a mesh inside GiD, you mush use: Files->Import->GiD mesh If you want to make it become automatically a project, you must create a batch file that imports the mesh and saves a project. You can make GiD do this without opening any window by calling GiD with something like: gid -n ... (check the help for details) Regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo ... [GiDlist] Animating results on Gauss Points
Send by: Louis Christophe Hello, I would like to know whether it is possible to animate vector results on Gauss points. It tried it but it didn't function on my version of GiD. An other problem I encountered is that, when I animate vector results on nodes, all the previous vectors remain visible. Thanks Louis Christophe Open Engineering SA Spatiopôle, WSL - Parc Scientifique du Sart Tilman Rue des Chasseurs Ardennais B-4031 Angleur-Liège (Belgium) Tel: (+32/0)4.372.93.45 - Fax: (+32/0)4.372.93.21 www.open-engineering.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040212/5a87d900/attachment.htm... [GiDlist] crash while visualizing my result
Send by: Khaled Obeidat Hello GID team,
Attached is my *.res file that contains both "Scalar OnNodes" and "Vector
OnNodes".
GID 7.4 crashes when I switch between the two type of data and it gives the
following message. could you please let me know what is wrong.
Thank you
bad option "E" in "cur_vector_factor": must be { arewein, get {
results_options, all_volumesets, all_surfacesets, all_cutsets,
cur_volumesets, cur_surfacesets, cur_cutsets, all_display_styles,
cur_display_style, all_analisis, all_setps, cur_analisis, cur_step,
all_results_views, cur_results_view, cur_results_list, results_list,
cur_result, cur_components_list, components_list, cur_component,
main_geom_state, main_geom_factor, main_geom_all_deform,
main_geom_cur_deform, show_geom_state, show_geom_factor,
show_geom_all_deform, show_geom_cur_deform, show_geom_cur_analisis,
show_geom_cur_step}}
while executing
".gid.central.s info post get cur_vector_factor $cur_res_view $cur_res
$cur_anal $cur_step "
("Display_Vectors" arm line 2)
invoked from within
"switch $cur_res_view {
"Iso_Surfaces" {
set values [.gid.central.s info post get iso_cur_result_values]
set restcommand "$pp exact $cur_res..."
(procedure "AddAnalysisStepsToMenu" line 23)
invoked from within
"AddAnalysisStepsToMenu .mm1.button4.3"
(menu preprocess)
Khaled Obeidat
Research Engineer
EMAG Technologies, Inc.
www.emagtechnologies.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] crash while visualizing my result
Send by: Miguel A. Pasenau de Riera Have you tried the latest beta? ftp://www.gidhome.com/pub/gid_adds/Windows/ <ftp://www.gidhome.com/pub/gid_adds/Windows/GiD7.4.6b-win.exe> GiD7.4.6b-win.exe miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Khaled Obeidat Enviado el: jueves, 12 de febrero de 2004 16:16 Para: ... [GiDlist] crash while visualizing my result
Send by: Khaled Obeidat Can you please provide me with the required password? here is my machine information. Machine bessel01 Operating system Windows ID number 42f8ab7800000069 Mail kobeidat at yahoo.com Connected from: 152.160.4.10 At 05:17 AM 2/13/2004, you wrote: >Have you tried the latest beta? ><ftp://www.gidhome.com/pub/gid_adds/Windows/GiD7.4.6b-win.exe>ftp://www.gidhome.com/pub/gid_adds/Windows/<ftp://www.gidhome.com/pub/gid_adds/Windows/GiD7.4.6b-win.exe... [GiDlist] crash while visualizing my result
Send by: Miguel A. Pasenau de Riera the same password used for the 7.4 should work for this beta (generally the password file is located at program filesgidgid7.4scriptsTemporalVariables just copy this to the scripts dorectory of the gid7.4.6b) the last password you asked for was: Code for: windows bessel01 - 42f8ab7800000069 bq9e-huh1-p851-9sx8-sgpt-nxgr-1p whish is still valid best regards -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Khaled Obeidat Enviado el: viernes, 13 de febrero de 2004 16:55 Para: ... [GiDlist] crash while visualizing my result
Send by: Khaled Obeidat I have tried the gid7.4.6b and I'm getting the same error message. At 11:42 AM 2/13/2004, you wrote: >the same password used for the 7.4 should work for this beta (generally >the password file is located at program >filesgidgid7.4scriptsTemporalVariables just copy this to the scripts >dorectory of the gid7.4.6b) > >the last password you asked for was: >Code for: windows bessel01 - 42f8ab7800000069 > >bq9e-huh1-p851-9sx8-sgpt-nxgr-1p > >whish is still valid > >best regards >-----Mensaje original----- ... [GiDlist] Geometric Entities
Send by: LEWIS, RANDEL E Is it possible to access and output, with a *.bas file, geometric entity data such as points, lines, surfaces and volumes using commands similar to those for nodes and elements? Randy -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040212/9de2669a/attachment.htm [GiDlist] Geometric Entities
Send by: Enrique Escolano MessageNot, from the bas file only can directly access to mesh entities. To output geometric entities must use tcl, a powerful script language Can ask GiD about the geometric entities with .central.s info procedures Note: your bas file can invoke a tcl procedure with the *tcl command. Regards Enrique Escolano ----- Original Message ----- From: LEWIS, RANDEL E To: gidlist at gatxan.cimne.upc.es Sent: Thursday, February 12, 2004 5:10 PM Subject: [GiDlist] Geometric Entities Is it possible to access and output, with a *.bas file, geometric entity data such as points, lines, surfaces and volumes using commands similar to those for nodes and elements? Randy -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Import GiD Mesh
Send by: dganit Hello all, After importing 'GiD mesh' to the preprocess - can I change the mesh (elements type, size etc.) ? Thanks, Dganit -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040217/b47ec5d6/attachment.htm [GiDlist] Import GiD Mesh
Send by: Enrique Escolano I don't understand exactly your question: change the element type or size? If you want to re-mesh a shape defined by a previous mesh, it exists an option, import as a "Surface mesh" (menu Files->Import->Surface mesh...), the source file must be a GiD ASCII mesh file, or a STL file. and try to generate a new mesh over this pseudo-surface. Note: This mesh generation only works for simple cases. Regards Enrique Escolano ----- Original Message ----- From: dganit To: gidlist at gatxan.cimne.upc.es Sent: Tuesday, February 17, 2004 5:38 PM Subject: [GiDlist] Import GiD Mesh Hello all, After importing 'GiD mesh' to the preprocess - can I change the mesh (elements type, size etc.) ? Thanks, Dganit -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Animating results on Gauss Points
Send by: Louis Christophe Hello, I would like to know whether it is possible to animate vector results on Gauss points. It tried it but it didn't function on my version of GiD. An other problem I encountered is that, when I animate vector results on nodes, all the previous vectors remain visible. Thanks Louis Christophe Open Engineering SA Spatiopôle, WSL - Parc Scientifique du Sart Tilman Rue des Chasseurs Ardennais B-4031 Angleur-Liège (Belgium) Tel: (+32/0)4.372.93.45 - Fax: (+32/0)4.372.93.21 www.open-engineering.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040217/0ff31af6/attachment.htm... [GiDlist] Access to local coordinates in Tcl?
Send by: Andrea Calaon Hello everyone, I would like to have access to local coordinates in the Tcl scripts. Is there any way to do it? I need to know the local coordinates of the nodes of 2D elements which lay on the lines boundary of the surface hosting the element (not the best explanation ). So first I need to have the list of the 2D elements with one side on the surface boundary, and then, for each one of those elements, the set of local coordinates corresponding to the nodes on the boundary side/s. I could use a code similar to the following: In the .cnd file: NUMBER: CONDITION: Line_BC CONDTYPE: over Lines CONDMESHTYPE: over face elems State: Hidden VALUE: END CONDITION In the .bas file: *set elems(All) *Set cond Line_BC *elems *CanRepeat *set elems(triangle) *add elems(quadrilateral) *loop elems *OnlyInCond *ElemsNum *localnodes *end And then read the file in Tcl, store the data and use them inside the Tcl procedure. But it would be easier to do it directly in Tcl. Thanks for any suggestion Best regards, Andrea P.S. Sorry for any error in the formatting of this message, but the mail program I have to use is not doing what it should ... Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Access to local coordinates in Tcl
Send by: Andrea Calaon Hello everyone, I would like to have access to local coordinates in the Tcl scripts. Is there any way to do it? Short explanation. I need to know the local coordinates of the nodes of 2D elements which lay on the lines boundary of the surface hosting the element (not the best explanation ). So first I need to have the list of the 2D elements with one side on the surface boundary, and then, for each one of those elements, the set of local coordinates corresponding to the nodes on the boundary side/s. I could use a code similar to the following: In the .cnd file: NUMBER: CONDITION: Line_BC CONDTYPE: over Lines CONDMESHTYPE: over face elems State: Hidden VALUE: END CONDITION In the .bas file: *set elems(All) *Set cond Line_BC *elems *CanRepeat *set elems(triangle) *add elems(quadrilateral) *loop elems *OnlyInCond *ElemsNum *localnodes *end and then read the file in Tcl, store the data and use them inside the Tcl procedure. But it would be easier to do it directly in Tcl. Thanks for any suggestion Best regards, Andrea P.S. Sorry for any error in the formatting of this message, but the mail program I have to use is not doing what it should ... Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Access to local coordinates in Tcl
Send by: Enrique Escolano It is not necessary to write a file and read it from tcl, you can get
directly this information from tcl:
set res [.central.s info conditions Line_BC mesh]
this tcl command returns a subitems list, where each item has:
<element number> <face local number> - <value1> ... <value n>
for example, returns some similar to:
{2 1 - 0.0} {18 1 - 5.3 0.2} {6 1 - 9.8 1.0} {13 1 - 4.6 1.5} ...
So, the local implicit GiD numeration of the faces is:
Triangle: 12 23 31
Quadrilateral: 12 23 34 41
Tetrahedra: 123 243 341 421
Hexahedra: 1234 1562 2673 3784 1485 5876
You can also get info about the elements if needed
for example:
.central.s info list_entities elements 2 18 6 13
Note: To test easily this info commands, can write in the command line some
as:
-np- WarnWinText [.central.s info list_entities elements 2 18 6 13]
Regards
Enrique Escolano
----- Original Message -----
From: "Andrea Calaon" <...
[GiDlist] Strange behaviour of CONDITION 17
Send by: Andrea Calaon Hello everyone, Today something strange happened when I introduced the condition 17 in the .cnd file in my problemtype. When I loaded the problemtype in GiD the Erroro Info message box was displayed with the following error: VoidPlex::set_at. Repeated index 17 And then, closing the message box, GiD closed too. After some checks in the condition file I tried to change the condition number and I jumped to the number 18: everything was OK! It is there anything wrong with the number 17 (as in Italy, where it is considered to bring bed luck)? A joke Have a nice day Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Minor error in documentation
Send by: Andrea Calaon Hi, I've found a minor error in the online documentation: in the page http://gid.cimne.upc.es/support/gid_17.subst#SEC251 the Example of ".central.s info gendata" is without the keyword "info". Kind regards Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: andrea at beasy.com [GiDlist] Minor error in documentation
Send by: Enrique Escolano Ok, thanks by this documentation bug report. Enrique ----- Original Message ----- From: "Andrea Calaon" <andrea at beasy.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Thursday, February 19, 2004 1:25 PM Subject: [GiDlist] Minor error in documentation > Hi, > I've found a minor error in the online documentation: > in the page > > http://gid.cimne.upc.es/support/gid_17.subst#SEC251... [GiDlist] Condition 17 problem solved
Send by: Andrea Calaon Hi everyone, I've found what the problem was with the condition 17, the file I was working with was in the wrong dir (the project file to gathering the problemtype files was partially "old" ...). Sorry for any inconvenience. Best Regards Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: andrea at beasy.com [GiDlist] Mesh problem
Send by: Robert MacDonald-Lewis When meshing a structure I have modeled using quadrilateral elements with eight nodes, not all of the nodes are in the expected positions. Some are placed in the centre of elements whilst other expected to be equal distance between corner nodes of an element are offset to the right (I am using a structured mesh). Can anyone help me to solve this problem? Galbraith Consulting Ltd 8 - 10 High Street Laurencekirk Kincardineshire AB30 1AE T +44 (0)1561-378383 robert <mailto:robert at galbraithconsulting.co.uk> @galbraithconsulting <mailto:robert at galbraithconsulting.co.uk... [GiDlist] DEPENDENCIES command with New Menu
Send by: VSayako Willy Hi GiD Team I have created lot of new Sub-Menus in GiD. Now I would like to make some cross-references (Hide,SET...) among my new sub-menus. Should I have to write tcl to control those sub-menus in my ,Problem-Type.tcl file?? Any suggestion please advice. Regards. __________________________________ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools [GiDlist] DEPENDENCIES command with New Menu
Send by: Enrique Escolano Must write tcl code to implement this menu dependencies. Read Tcl/Tk standard help about the "trace variable" command Enrique Escolano ----- Original Message ----- From: "VSayako Willy" <vilaysako at yahoo.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Tuesday, February 24, 2004 10:54 AM Subject: [GiDlist] DEPENDENCIES command with New Menu > > Hi GiD Team > I have created lot of new Sub-Menus in GiD. Now I > would like to make some cross-references (Hide,SET...) ... [GiDlist] Mesh problem
Send by: Ramon Ribó
Hello,
For quadratic elements, nodes are positioned over the geometry,
either lines of surfaces.
Is this your case? If you have a recent GiD version (a beta version),
there is a new option in
preferences to see the quadratic elements with curved edges.
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com <http://www.compassis.com/>
ramsan at compassis.com
c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82
08034 Barcelona, Spain fax. +34 93 204 19 09
-----Mensaje original-----
De: ...
[GiDlist] Repeat in reading condition in Tcl
Send by: Andrea Calaon Hi everyone, I'm using the Tcl command recommended by Enrique in a recent mail: set res [.central.s info conditions Contour_Line mesh] to get the list of elements which have the condition: BOOK: Automatic NUMBER: 14 CONDITION: Contour_Line CONDTYPE: over lines CONDMESHTYPE: over face elems QUESTION: ForSpectralElements VALUE: 0 STATE: HIDDEN END CONDITION assigned. I would like the list corresponding to the elements listed by a .bas like this: *set elems(All) *Set cond Contour_Line *elems *CanRepeat *set elems(triangle) *add elems(quadrilateral) *loop elems *OnlyInCond *ElemsNum *localnodes *end But when I look at the list directly in GiD using the very useful command line: -np- WarnWinText [.central.s info conditions Contour_Line mesh] I get a list in which some elements that should be repeated two times appears one time only or not at all. The strange thing is that SOME elements surrounded by two lines with the condition Contour_Line applied appear in the list correctly twice. Am I missing something in the Tcl command to have the effect of "*CanRepeat"? Thanks for any help Kind Regards P.S. I'm no receiving the mail of the GiD mail list since February 13th. Is it possible to have the mail sent as before? Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Repeat in reading condition in Tcl
Send by: Enrique Escolano Can you send a sample (so small as possible) with this problem? Enrique Escolano ----- Original Message ----- From: "Andrea Calaon" <andrea at beasy.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Friday, February 20, 2004 5:45 PM Subject: [GiDlist] Repeat in reading condition in Tcl > Hi everyone, > I'm using the Tcl command recommended by Enrique in a recent mail: > > set res [.central.s info conditions Contour_Line mesh] > >... [GiDlist] Mesh problem
Send by: Enrique Escolano Dear Sir.
The quadratic nodes are not located at the midpoint element edge, are located over the source curved line, and it this curve
is not uniformly parameterized, then the point with mid parameter (0.5 ) must be far the midpoint curve.
You can use some trick to move this quadratic nodes to the mid-egde,
for example, I attach a sample problemtype to move this nodes automatically after generate the mesh, using some Tcl procedure.
This sample only works for 8 noded quadrilaterals.
Unzip this file inside the GiD problemtype directory, then restart GiD and load it with
Data->Problemtype->CenterQuadraticNodes
This is the Tcl included code:
proc InitGIDProject { dir } {
#procedure automatically called by GiD
}
proc EndGIDProject {} {
#procedure automatically called by GiD
#remove AfterMeshGeneration procedure to not corrupt other problemtypes
rename AfterMeshGeneration {}
}
proc AfterMeshGeneration { fail } {
#procedure automatically called by GiD
if { !$fail } {
CenterQuadraticNodes
}
}
proc CenterQuadraticNodes { } {
#assumed quadrilateral of 8 nodes, not checked
GidUtils::DisableGraphics
set OldCreateAllwaisNewPoint [.central.s info variable CreateAlwaysNewPoint]
.central.s process escape escape escape escape Utilities Variables CreateAlwaysNewPoint 1 escape
set elems [.central.s info mesh elements quadrilateral]
foreach {num n0 n1 n2 n3 n4 n5 n6 n7 mat} $elems {
foreach ni [list $n4 $n5 $n6 $n7] na [list $n0 $n1 $n2 $n3] nb [list $n1 $n2 $n3 $n0] {
set pa [lindex [.central.s info Coordinates $na mesh] 0]
set pb [lindex [.central.s info Coordinates $nb mesh] 0]
set pi [MathUtils::VectorSum $pa $pb]
set pi [MathUtils::ScalarByVectorProd 0.5 $pi]
.central.s process escape escape escape escape Meshing EditMesh MoveNode $ni NoJoin $pi
}
}
.central.s process escape escape escape escape Utilities Variables CreateAlwaysNewPoint $OldCreateAllwaisNewPoint
GidUtils::EnableGraphics
.central.s process escape escape escape escape Meshing MeshView escape
}
Regards
Enrique Escolano
----- Original Message -----
From: Robert MacDonald-Lewis
To: ...
[GiDlist] Mesh problem
Send by: Enrique Escolano Dear Sir.
The quadratic nodes are not located at the midpoint element edge, are located over the source curved line, and it this curve
is not uniformly parameterized, then the point with mid parameter (0.5 ) must be far the midpoint curve.
You can use some trick to move this quadratic nodes to the mid-egde,
for example, I attach a sample problemtype to move this nodes automatically after generate the mesh, using some Tcl procedure.
This sample only works for 8 noded quadrilaterals.
Unzip this file inside the GiD problemtype directory, then restart GiD and load it with
Data->Problemtype->CenterQuadraticNodes
This is the Tcl included code:
proc InitGIDProject { dir } {
#procedure automatically called by GiD
}
proc EndGIDProject {} {
#procedure automatically called by GiD
#remove AfterMeshGeneration procedure to not corrupt other problemtypes
rename AfterMeshGeneration {}
}
proc AfterMeshGeneration { fail } {
#procedure automatically called by GiD
if { !$fail } {
CenterQuadraticNodes
}
}
proc CenterQuadraticNodes { } {
#assumed quadrilateral of 8 nodes, not checked
GidUtils::DisableGraphics
set OldCreateAllwaisNewPoint [.central.s info variable CreateAlwaysNewPoint]
.central.s process escape escape escape escape Utilities Variables CreateAlwaysNewPoint 1 escape
set elems [.central.s info mesh elements quadrilateral]
foreach {num n0 n1 n2 n3 n4 n5 n6 n7 mat} $elems {
foreach ni [list $n4 $n5 $n6 $n7] na [list $n0 $n1 $n2 $n3] nb [list $n1 $n2 $n3 $n0] {
set pa [lindex [.central.s info Coordinates $na mesh] 0]
set pb [lindex [.central.s info Coordinates $nb mesh] 0]
set pi [MathUtils::VectorSum $pa $pb]
set pi [MathUtils::ScalarByVectorProd 0.5 $pi]
.central.s process escape escape escape escape Meshing EditMesh MoveNode $ni NoJoin $pi
}
}
.central.s process escape escape escape escape Utilities Variables CreateAlwaysNewPoint $OldCreateAllwaisNewPoint
GidUtils::EnableGraphics
.central.s process escape escape escape escape Meshing MeshView escape
}
Regards
Enrique Escolano
----- Original Message -----
From: Robert MacDonald-Lewis
To: ...
[GiDlist] Example for the
Send by: Andrea Calaon Hello Enrique,
here is a very compact sample.
The geometry is a unitary cube:
Points
1 0.000000 0.000000 0.000000
2 1.000000 0.000000 0.000000
3 0.000000 1.000000 0.000000
4 1.000000 1.000000 0.000000
5 0.000000 0.000000 1.000000
6 1.000000 0.000000 1.000000
7 0.000000 1.000000 1.000000
8 1.000000 1.000000 1.000000
The condition Contour_Line has been applied to all the model lines.
I then mesh with a Structured mesh all the surfaces using 2 as number of cells for all the lines.
The answer to the command "-np- WarnWinText [.central.s info conditions Contour_Line mesh]"
is here included in tabular form (with the elements reordered to check how many times each appears).
Every element in this particular case should appears 2 times, since it has two different lines with the
Contour_Line as boundary. But for example elements 5, 6, 10, 11, 15, 19, 20 appear only one time, and
element 13, 17, 18 are completely missing.
elem - side - value
1
3
0
1
4
0
2
1
0
2
4
0
3
3
0
3
2
0
4
2
0
4
1
0
5
3
0
6
1
0
7
2
0
7
3
0
8
2
0
8
1
0
10
1
0
11
2
0
12
2
0
12
1
0
14
1
0
15
2
0
16
2
0
16
1
0
19
2
0
20
2
0
What am I doing wrong?
Thanks in advance.
Have a nice day
Andrea Calaon
Ashurst Lodge, Ashurst
Southampton, Hampshire
SO40 7AA, UK
Tel. office: +44 23 80 293 223
Fax office: +44 23 80 292 853
Mobile: +44 7766 488 225
E-mail: ...
[GiDlist] Example for the
Send by: Enrique Escolano At this moment, the conditions 'over face elements' are implemented only to be transferred to the elements on boundary faces, For surfaces are considered as boundary only the lines with "higherentity"=1, (or lines with "higherentity"=1 shared by two surfaces with different material). (use menu Meshing->Boundaries to visualize this boundary) Your case is a "closed" cube: all lines are considered as interior, and some conditions are transferred only to some elements, not to all elements. At this moment you must use some trick, for example to assign a different material to each surface to force the interface lines be considered as boundary. We are currently working to avoid this limitation for the next beta version. Enrique Escolano ----- Original Message ----- From: "Andrea Calaon" <... [GiDlist] Displaying Materials
Send by: Robert MacDonald-Lewis Hello all, I have created a model and assigned various material properties to this model. The problem arises when using the Draw, This Material command. When certain materials are requested to be drawn a different material is drawn and for some materials there is no material drawn. This makes me wonder if the materials I have assigned are actually assigned or not. I have tried reassigning the materials, but the problem persists. Has this problem been encountered by others? Can it be solved by using the new Beta Version? Any help or advice you can give would be greatly appreciated. Robert Galbraith Consulting Ltd 8 - 10 High Street Laurencekirk Kincardineshire AB30 1AE T +44 (0)1561-378383 robert <mailto:... [GiDlist] Displaying Materials
Send by: Jorge Suit Perez Ronda What version of GiD are you ussing? On Wednesday 03 March 2004 09:58, Robert MacDonald-Lewis wrote: > Hello all, > > > > I have created a model and assigned various material properties to this > model. The problem arises when using the Draw, This Material command. > When certain materials are requested to be drawn a different material is > drawn and for some materials there is no material drawn. This makes me > wonder if the materials I have assigned are actually assigned or not. I > have tried reassigning the materials, but the problem persists. ... [GiDlist] Displaying Materials
Send by: Robert MacDonald-Lewis I am using version 7.2 Galbraith Consulting Ltd 8 - 10 High Street Laurencekirk Kincardineshire AB30 1AE T +44 (0)1561-377824 robert at galbraithconsulting.co.uk http://www.galbraithconsulting.co.uk -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] On Behalf Of Jorge Suit Perez Ronda Sent: 03 March 2004 11:50 To: ... [GiDlist] Point mesh problem
Send by: Khaled Obeidat Dear GID team, Attached is a gid project, I couldn't mesh it because GID complaining about some contour errors. Could you please tell me how to avoid such problem. Attache is the project. Thank you Khaled Obeidat Research Engineer EMAG Technologies, Inc. www.emagtechnologies.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040303/ddcf1c7a/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: Ship.zip Type: application/zip Size: 52944 bytes Desc: not available Url : ... [GiDlist] Point mesh problem
Send by: Khaled Obeidat Can any one please answer my question? At 01:46 PM 3/3/2004, you wrote: >Dear GID team, > >Attached is a gid project, I couldn't mesh it because GID complaining >about some contour errors. Could you please tell me how to avoid such problem. > >Attache is the project. >Thank you > >Khaled Obeidat >Research Engineer >EMAG Technologies, Inc. >www.emagtechnologies.com Khaled Obeidat Research Engineer EMAG Technologies, Inc. www.emagtechnologies.com -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Point mesh problem
Send by: Ramon Ribó
Hello,
GiD point mesher has some limits in the number of points that can
generate. It will be corrected
in the following versions.
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com <http://www.compassis.com/>
ramsan at compassis.com
c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82
08034 Barcelona, Spain fax. +34 93 204 19 09
-----Mensaje original-----
De: gidlist-admin at gatxan.cimne.upc.es...
[GiDlist] Point mesh problem
Send by: Enrique Escolano MensajeTo avoid this limited number of 1-noded elements, try to divide your volume in smaller volumes. Enrique Escolano ----- Original Message ----- From: Ramon Ribó To: gidlist at gatxan.cimne.upc.es Sent: Monday, March 15, 2004 4:54 PM Subject: RE: [GiDlist] Point mesh problem Hello, GiD point mesher has some limits in the number of points that can generate. It will be corrected in the following versions. Regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com... [GiDlist] Materials, Draw
Send by: Robert MacDonald-Lewis Hello All, When asking GiD to draw all materials in a model 13 materials are displayed any more are displayed as others. Is there a way to get GiD to actually display all the materials at the same time? I have tried to display each material on its own, however GiD does not display some of the materials used in the model. Sometimes it will not display any material at other times it will display a different material from the one requested. I am using GiD version 7.2 Galbraith Consulting Ltd 8 - 10 High Street Laurencekirk Kincardineshire AB30 1AE T +44 (0)1561-377824 robert <mailto:robert at galbraithconsulting.co.uk... [GiDlist] Materials, Draw
Send by: Enrique Escolano At this moment, only can be displayed 13 color materials (to avoid a big legend table size). You can also list entities (Utilities->List) to ckeck their material number. does GiD not display some of the materials used in the model with GiD 7.2?? Download the last GiD 7.4.6b beta version, and if it also fail, send us a small sample to correct the bug. Regards Enrique Escolano ----- Original Message ----- From: Robert MacDonald-Lewis To: gidlist at gatxan.cimne.upc.es Sent: Friday, March 05, 2004 1:52 PM Subject: [GiDlist] Materials, Draw Hello All, When asking GiD to draw all materials in a model 13 materials are displayed any more are displayed as others. Is there a way to get GiD to actually display all the materials at the same time? I have tried to display each material on its own, however GiD does not display some of the materials used in the model. Sometimes it will not display any material at other times it will display a different material from the one requested. I am using GiD version 7.2 Galbraith Consulting Ltd 8 - 10 High Street Laurencekirk Kincardineshire AB30 1AE T +44 (0)1561-377824 ... [GiDlist] Problem Type
Send by: Fernanda Caffaratti I wish to write a tcl procedure to call a Problem Type. I used this command: .central.s process escape escape escape escape data defaults ProblemType ProType1/ProType1 escape where ProType is my problem type. but it seems to be a wrong command. Can somebody to help me? Thanks. --------------------------------- ¿Buscás un auto? Encontralo en Yahoo! Autos ¡Más de 4000 clasificados todos los días! Usados - 0 km - Vendé el tuyo -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040311/8350ac6d/attachment.htm... [GiDlist] Problem Type
Send by: Enrique Escolano Enclose your problemtype name with quotes (to prevent if your path or problemtype name has blank spaces) To send the name enclosed with quotes must use ""name"", for example .central.s process escape escape escape escape data defaults ProblemType yes ""My Test/ProType1"" escape Note also the word "Yes" if a previous problemtype is loaded Enrique Escolano ----- Original Message ----- From: Fernanda Caffaratti To: gidlist at gatxan.cimne.upc.es Sent: Thursday, March 11, 2004 1:53 AM Subject: [GiDlist] Problem Type I wish to write a tcl procedure to call a Problem Type. I used this command: .central.s process escape escape escape escape data defaults ProblemType ProType1/ProType1 escape where ProType is my problem type. but it seems to be a wrong command. Can somebody to help me? Thanks. ------------------------------------------------------------------------------ ¿Buscás un auto? Encontralo en Yahoo! Autos ¡Más de 4000 clasificados todos los días! Usados - 0 km - Vendé el tuyo -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Import in preprocess
Send by: dganit Hello Everyone, I have used the option Import->GiD Mesh to import a mesh in preprocess. I tryed to generate a new mesh on the imported mesh, but got an error and no mesh was generated. I tryed to use Import->Mesh Surface, and did change size of elements, but when opened the new mesh file in postprocess the 'old' mesh (before new generation) was opened. 1. Can I change not only the size of elements in Impoer->Surface Mesh, but also type of elements etc. ? 2. Why did I get the error in Import->GiD Mesh ? Thanks a lot, Dganit -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040314/aadfae14/attachment.htm... [GiDlist] Import in preprocess
Send by: Enrique Escolano If you have a mesh (created or imported), and try to re-mesh, then the old mesh is deleted, and is generated a new mesh from the geometric entities (points, lines, surfaces or volumes) . In your case maybe not exists any geometric entity. If you want to re-mesh a previous mesh, and don´t have the related geometric model, can try to import as "surface mesh". This create a "pseudo-geometric" entity (based on the mesh shape). You can try to generate a mesh from this entity, but it only works for simple cases. After generate the mesh, it's automatically transferred to postprocess, it's not necessary to save it (in a GiD Mesh Ascii file) and reopen in postprocess. Enrique Escolano ----- Original Message ----- From: dganit To: ... [GiDlist] Import in preprocess
Send by: dganit Hello Enrique, Thanks for your reply. I re-meshed an imported "surface mesh" and toggled to postprocess as you have recomended. But the postprocess opened the old mesh and not the new generated one. Please help, Dganit ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.es Sent: Monday, March 15, 2004 1:38 PM Subject: Re: [GiDlist] Import in preprocess If you have a mesh (created or imported), and try to re-mesh, then the old mesh is deleted, and is generated a new mesh from the geometric entities (points, lines, surfaces or volumes) . In your case maybe not exists any geometric entity. If you want to re-mesh a previous mesh, and don´t have the related geometric model, can try to import as "surface mesh". This create a "pseudo-geometric" entity (based on the mesh shape). You can try to generate a mesh from this entity, but it only works for simple cases. After generate the mesh, it's automatically transferred to postprocess, it's not necessary to save it (in a GiD Mesh Ascii file) and reopen in postprocess. Enrique Escolano ----- Original Message ----- From: dganit To: ... [GiDlist] Import in preprocess
Send by: Enrique Escolano Maybe you have a mesh file named for example "yourmodel".flavia.msh then this external mesh file, if exists, it replace the internal mesh when toggle to postprocess. Rename this file or the model. Enrique ----- Original Message ----- From: dganit To: gidlist at gatxan.cimne.upc.es Sent: Monday, March 15, 2004 8:50 PM Subject: Re: [GiDlist] Import in preprocess Hello Enrique, Thanks for your reply. I re-meshed an imported "surface mesh" and toggled to postprocess as you have recomended. But the postprocess opened the old mesh and not the new generated one. Please help, Dganit ----- Original Message ----- From: Enrique Escolano To: ... [GiDlist] Thanks for the suggestion
Send by: Andrea Calaon Hi GiD Team,
thanks for the suggestion about how to use the condition "Contour_Line".
I now assign automatically a material to each surface with the following codes:
In the .mat file:
NUMBER: 4 MATERIAL: Fictitious
QUESTION: NoQuestion
VALUE: 1
TKWIDGET: MaterialWidget::Control Surfaces "NoQuestion real+"
END MATERIAL
In the .tcl problemtype file:
proc SetFictsMats { } {
for { set i 1 } { $i <= [NumSurfaces] } { incr i } {
set MatName "Fictitious$i"
.central.s process escape escape escape escape
.central.s processdata materials newmaterial Fictitious $MatName 1 escape
.central.s process data mat assign $MatName Surfaces $i escape
}
}
and SetFictsMats gets executed before auto applying the "Contour_Line" condition.
Everything works fine. In the next GiD release I'll avoid the procedure.
Kind Regards
Andrea Calaon
Ashurst Lodge, Ashurst
Southampton, Hampshire
SO40 7AA, UK
Tel. office: +44 23 80 293 223
Fax office: +44 23 80 292 853
Mobile: +44 7766 488 225
E-mail: ...
[GiDlist] Small bug
Send by: Philippe Bouchilloux Hello: It seems that 7.2 crashes when trying to create a comment in the preprocessor (Utilities | Graphical | Comments). However, this seems to work in the postprocessor. I have not tested more recent betas to see if the problem has been fixed. Regards, Philippe [GiDlist] Small bug
Send by: Enrique Escolano Yes, thanks, the bug is fixed in the last betas. Instead comments, can use other utility to put a text in any screen location: Utilities->Dimensions->Create->Text Regards Enrique Escolano ----- Original Message ----- From: "Philippe Bouchilloux" <pb at magsoft-flux.com> To: "GiDList" <gidlist at gatxan.cimne.upc.es> Sent: Tuesday, March 16, 2004 10:39 PM Subject: [GiDlist] Small bug > Hello: > > It seems that 7.2 crashes when trying to create a comment in the ... [GiDlist] Geometry data
Send by: Cristina Costa An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040317/0951d478/attachment.htm [GiDlist] Geometry data
Send by: Enrique Escolano In GiD the concept "geometry" is related to points, lines, surfaces, and volumes the concep "mesh" is related to nodes and elements. The *.bas file only manage mesh entities. If do you want to export geometric entities, must use tcl commands (.central.s info). (Read help about Tcl-Tk extension) As a trick, you can call a tcl procedure from the bas file with *tcl (the returned value is directly printed to the output file) Regards Enrique Escolano ----- Original Message ----- From: Cristina Costa To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, March 17, 2004 12:16 PM Subject: [GiDlist] Geometry data Hello All, Can GID export, through a *.bas file, the geometry data (nodes, faces and volumes)? Thank you, Cristina Costa _____________________________________________________________________ Serviço de Webmail do Instituto Politécnico de Tomar ( IPT ) _______________________________________________ GiDlist mailing list ... [GiDlist] Multiple dependencies
Send by: Andrea Calaon Hi everyone, Is it there any way of dealing with multiple property (<Pi> field) in the DEPENDENCIES special field? Kind Regards Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: andrea at beasy.com [GiDlist] Multiple dependencies
Send by: Jorge Suit Perez Ronda In a dependence you can specify more than one action, like this DEPENDENCIES:(yes, HIDE, Field1, no, HIDE Field2, no, RESTORE, Field3, yes) regards, Jorge On Thursday 18 March 2004 12:07, Andrea Calaon wrote: > Hi everyone, > Is it there any way of dealing with multiple property (<Pi> field) in the > DEPENDENCIES special field? > > Kind Regards > > Andrea Calaon > > Ashurst Lodge, Ashurst > Southampton, Hampshire > SO40 7AA, UK > Tel. office: +44 23 80 293 223 > Fax office: +44 23 80 292 853 > Mobile: +44 7766 488 225 ... [GiDlist] Compatible blocks
Send by: Cristina Costa Hello All, Im trying to generate a mesh of volumetric elements, of compatible bricks, and interface element, between compatible bricks to use in software CAST3M. The generation processes have two distinct phases. The 1st phase is developed in GID and consists in generating a volumetric element mesh of compatible bricks; after that, in order to be read in software CAST3M, a data file is written using a *.bas file. The 2nd phase is developed in CAST3M, after having imported the data file generated in 1st phase, and consists in automatically generating interface elements between compatible bricks. However, the automatic generation of interface elements in CAST3M (2nd phase) using the data file information related with nodes and volumetric elements is not working properly, because those different blocks should not have the same interface nodes, i.e. the nodes should have the same coordinates but a different identification. More specifically, GID seems to be generating compatible blocks with common nodes, i.e. not duplicated as it would desirable for defining interface (joint) elements. On the contrary, CAST3M needs such common nodes to be duplicated, and it can perform this task if the corresponding information of each block in the output file is allocated in different groups of data (one group per block). I tried to use a *.cnd file to assign one different condition to each block and it indeed was possible to separate the information of different blocks. However this procedure becomes very hard because Ive a lot of blocks to consider (±1100 blocks). For this reason can you suggest me same ideas to write a data file with these characteristics, or any another strategy likely to generate duplicated nodes belonging to adjacent and compatible blocks? Thank you, Regards Cristina Costa _____________________________________________________________________ Serviço de Webmail do Instituto Politécnico de Tomar ( IPT ) ... [GiDlist] Compatible blocks
Send by: Ramon Ribó Cristina, You can duplicate one surface in GiD geometry by using: Utilities->Uncollapse. If the surface is duplicated, the nodes will be duplicated. If you want to make sure that the duplicated nodes share the same position, use contacts between surfaces: Geometry->Create->Contact volume You will need to make heavy use of layers in order to manage properly duplicated surfaces. Alternatively, you can use materials or conditions or even the same layers, in order to define your groups. Regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com... [GiDlist] higher order elements
Send by: Eduardo Campello Hello GiD team, I work with higher order shell elements and I was wondering if you guys have plans to include cubic elements (triangular and/or quadrilateral) within the GiD mesh generator. Do you? kind regards, Eduardo Campello Department of Structural and Foundation Engineering University of São Paulo, Brazil -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040319/9c7bd841/attachment.htm [GiDlist] higher order elements
Send by: Enrique Escolano This task to generate cubic elements is planned to be included, but not at short term. Regards Enrique Escolano ----- Original Message ----- From: Eduardo Campello To: Gid list Sent: Thursday, March 18, 2004 4:21 PM Subject: [GiDlist] higher order elements Hello GiD team, I work with higher order shell elements and I was wondering if you guys have plans to include cubic elements (triangular and/or quadrilateral) within the GiD mesh generator. Do you? kind regards, Eduardo Campello Department of Structural and Foundation Engineering University of São Paulo, Brazil -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Command echo recently changed?
Send by: Andrea Calaon Hello GiD team, My "problem". I was using the command echo (in a GiD .win.bat file) in this way: echo %2\%1 > %2 emp.txt And now the string inside temp.txt seems to have a pair of "" it didn't have before. Has something related recently been changed? Regards Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040319/f260ac8d/attachment.htm... [GiDlist] Command echo recently changed?
Send by: Enrique Escolano There is not any recent change about this echo command. Maybe this change is because you use a name (or path) with blank spaces, and then are added the quotes to have a single word. Enrique Escolano ----- Original Message ----- From: Andrea Calaon To: gidlist at gatxan.cimne.upc.es Sent: Friday, March 19, 2004 11:49 AM Subject: [GiDlist] Command echo recently changed? Hello GiD team, My "problem". I was using the command echo (in a GiD .win.bat file) in this way: echo %2\%1 > %2 emp.txt And now the string inside temp.txt seems to have a pair of "" it didn't have before. Has something related recently been changed? Regards Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] create a volume mesh out of a STL surface mesh
Send by: Pete Smith Dear GiD users, I am new to GiD and want to create a volume mesh out of a surface mesh in STL format. Is this possible? If so, can anyone give me a guide on how to do it? Thanks in advance! -- India.com free e-mail - www.india.com. Check out our value-added Premium features, such as an extra 20MB for mail storage, POP3, e-mail forwarding, and ads-free mailboxes! Powered by Outblaze [GiDlist] create a volume mesh out of a STL surface mesh
Send by: Enrique Escolano If your STL shape is very simple, can import it as a "Surface mesh" (Files->Import->Surface mesh...), and then use this surface as volume boundary. Note: the STL triangles are re-meshed, and it only works for simple models. Enrique Escolano ----- Original Message ----- From: "Pete Smith" <sbarro at india.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Monday, March 22, 2004 12:54 PM Subject: [GiDlist] create a volume mesh out of a STL surface mesh > Dear GiD users, >... [GiDlist] create a volume mesh out of a STL surface mesh
Send by: Pete Smith I see. Is there another format better suitable for creating volume meshes out of a given surface mesh? ----- Original Message ----- From: "Enrique Escolano" <escolano at cimne.upc.es> Date: Tue, 23 Mar 2004 12:21:30 +0100 To: <gidlist at gatxan.cimne.upc.es> Subject: Re: [GiDlist] create a volume mesh out of a STL surface mesh > If your STL shape is very simple, can import it as a "Surface mesh" > (Files->Import->Surface mesh...), and then use > this surface as volume boundary. ... [GiDlist] create a volume mesh out of a STL surface mesh
Send by: Enrique Escolano Not. A mesh is a bad source to be used as geometry for GiD. Enrique Escolano ----- Original Message ----- From: "Pete Smith" <sbarro at india.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Tuesday, March 23, 2004 5:25 PM Subject: Re: [GiDlist] create a volume mesh out of a STL surface mesh > I see. Is there another format better suitable for creating volume meshes out of a given surface mesh? > > > > ----- Original Message ----- >... [GiDlist] From GID7.2 to GID7.4.6b: .central.s process escape escape escape data problemdata singlefield
Send by: IEEA Hello,
I am trying to update my customization, from GID7.2 to GID7.4.6b and I
have some problems :
In my past version, I used the function:
".central.s process escape escape escape data problemdata singlefield"
to send data to the problem data window (see example). It seems that
this command is no more avalaible. Is there an other command ?
Particularly, is there a command that is understood both by GID 7.2 and
GID7.4.6b.
Thank you,
G.W.R. Geis
Example:
---------
proc FreqToData {} {
global FREQ
.central.s process escape escape escape data problemdata singlefield
Frequency $FREQ
}
[GiDlist] From GID7.2 to GID7.4.6b: .central.s process escape escape escape data problemdata singlefield
Send by: Enrique Escolano To avoid conflicts with a field named "singlefield" or a part of this name (e.g. "single"), instead
to use
.central.s process escape escape escape data problemdata singlefield
for GiD 7.4.6b or higher, must use
.central.s process escape escape escape data problemdata -SingleField-
Note: Can check the current GiD version and use a different command if required, for example:
if { [GidUtils::VersionCmp 7.3.0] >= 0 } {
.central.s process Data ProblemData -SingleField- $fieldname $fieldvalue escape
} else {
.central.s process Data ProblemData SingleField $fieldname $fieldvalue escape
}
Enrique Escolano
----- Original Message -----
From: "IEEA" <...
[GiDlist] From GID7.2 to GID7.4.6b: .central.s process escape escape escape data problemdata singlefield
Send by: IEEA Thank you Enrique, It runs better now ! Is there other modifications like that ? Is it indicated in the GID user manual ? Particularly, with 7.4.6b version, a message appears in the info bar : "Warning: This problemtype must be updated for translation", whenever I use the command RemoveMenuOption (see Example). Example: ---------- RemoveMenuOption "Calculate" "Calculate" "PRE" What appends here ? Have a good day, G.W.R. Geis Enrique Escolano a écrit : > To avoid conflicts with a field named "singlefield" or a part of this > name (e.g. "single"), insteadto use.central.s process escape escape > escape data problemdata singlefieldfor GiD 7.4.6b or higher, must ... [GiDlist] ?? Warning: This problemtype must be updated for translation
Send by: IEEA Hello, in my customization, I used the command : RemoveMenuOption "Help" "Customization Help" "PRE" to remove the Customization Help into the Help menu of GID. With GID version 7.2, there was no problem, but now, with 7.4.6b version, a message appears in the info bar : Warning: This problemtype must be updated for translation I wish this message doesn't appear. Is-it possible ? Is there a command to remove option menu that is common to the 7.2 and 7.4.6b versions ? Thank you in advance, G.W.R.Geis [GiDlist] Integrate values over surfaces
Send by: Detlef Schmicker Hello, I am quite new to GID and I wonder, if it is possible to integrate a e.g. a velocity over a surface in postprocessing. I could not find this. thanks a lot Detlef Schmicker Fw: [GiDlist] Integrate values over surfaces
Send by: Enrique Escolano By default not exists an utility to integrate results. But for example the problemtyepe "Ramseries" has some specialized window (written using tcl/tk language) to make a vectorial summatory of the results on a selection of nodes. Enrique Escolano ----- Original Message ----- From: "Detlef Schmicker" <d.schmicker at physik.de> To: <GiDlist at gatxan.cimne.upc.es> Sent: Thursday, March 25, 2004 6:41 PM Subject: [GiDlist] Integrate values over surfaces > Hello, > > I am quite new to GID and I wonder, if it is possible to integrate > a e.g. a velocity over a surface in postprocessing. I could not find this. > > thanks a lot > > Detlef Schmicker > > _______________________________________________ > GiDlist mailing list > ... Fw: [GiDlist] ?? Warning: This problemtype must be updated for translation
Send by: Enrique Escolano Ignote this message,it's a small bug of the last 7.4.6 GiD version, = related with translation. It's corrected for the next beta. In other hand, your problemtype is not ready to work with GiD if the = language is not english.=20 To be compatible with other languages, the standard GiD menu name must = be enclosed with [_ ""]. (This _ is a function to provide the translated = sentence for the current language), for example you must use: RemoveMenuOption [_ "Help"] [_ "Tutorials"] "PRE" Enrique Escolano > ----- Original Message ----- > From: "IEEA" <ieea at club-internet.fr... [GiDlist] test
Send by: Miguel A. Pasenau de Riera 1 2 3 . . . _________________________________________________________________ Reparaciones, servicios a domicilio, empresas, profesionales... Todo en la guía telefónica de QDQ. http://qdq.msn.es/msn.cfm [GiDlist] Smoothing & filtering during animating
Send by: Anssi Markus Laukkanen Hi, I'm working on a problem where I'm animating a very large number of solution steps during which the observer also moves depending on the solution. I got this working by writing a batch file, but due to the large domain and movement of the observer, I probably have to apply an additional smoothing routine because the observers movement & solution in general cause the animation to appear a bit "unstable" (i.e. it oscillates to some extent). Since I would rather not act on the actual raw data I'm animating, what would be the simplest way of doing over the timestep data smoothing ? Appreciate any ideas, Anssi Laukkanen ... [GiDlist] general question on GiD's mesh generation...
Send by: Pete Smith Hi, I have a question of more general nature regarding GiD's mesh generation of three dimensional objects. My impression is that initially, a surface mesh is created from which the volume mesh is built. If this is the case, what are the requirements/properties of the surface mesh (e.g. Delaunay)? Thanks in advance! -- India.com free e-mail - www.india.com. Check out our value-added Premium features, such as an extra 20MB for mail storage, POP3, e-mail forwarding, and ads-free mailboxes! Powered by Outblaze [GiDlist] general question on GiD's mesh generation...
Send by: Enrique Escolano Yes, before generate in GiD a volume mesh, are generated the boundary elemens. The used method is an advancing front, is not a delaunay alghoritm. The nodes and elements are generated with some good shape and size requierements Regards Enrique Escolano ----- Original Message ----- From: "Pete Smith" <sbarro at india.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Friday, April 02, 2004 7:45 PM Subject: [GiDlist] general question on GiD's mesh generation... > Hi, >... [GiDlist] Small error report
Send by: Andrea Calaon Hi everyone, In the online documentation html page: http://gid.cimne.upc.es/support/gid_16.subst#SEC237 the picture "images/GaussPoints.gif" gives a wrong coordinate for the b Gauss point in the triangle case. Instead of 0.04459 the beta coordinate should be 0.445948490915965... Kind regards and have a nice day! Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Homepage: http://mailserver1.wessex.ac.uk/~acalaon Mobile: +44 7766 488 225 -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Small error report
Send by: Enrique Escolano Yes, this documentation bug was corrected some beta versions ago (you can see this correction inside GiD->Help), but the web page contain the online manual of GiD 7.0. It's not updated with the latests manuals, because some commands only can work with this last beta versions. In other hand this documentation bug it's also now corrected in the web online manual. Thanks Enrique Escolano ----- Original Message ----- From: Andrea Calaon To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, April 07, 2004 5:25 PM Subject: [GiDlist] Small error report Hi everyone, In the online documentation html page: ... [GiDlist] (no subject)
Send by: Kendon, Tim E Dear GidList I am having difficulties with the structured concentration option of Gid 7.2 I have attached a *tif to illustrate the problem. The *tif plot shows the mesh for a 4 sided structured surface where I have attempted to apply the structured concentration option to the vertical sides. It is clear that on the sides (lines) themselves the structured concentration option is working fine. However within the body of the surface I get a rather inexplicable shape. I can get a variety of odd shapes e.g. if I swap negative start weights for positive end weights, or if I flip the normals of the vertical lines to the different senses. I should point out the structured concentration option does seem to work sometimes. I can't think what I could be doing wrong here? I hope someone can shed some light on this. If this has already been covered apologies. Many thanks in advance Tim Kendon -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] (no subject)
Send by: Enrique Escolano Send us this geometry file (*.geo) to make some test. Try also to download the last GiD7.4.6b beta versions (the password remain the same) Enrique Escolano ----- Original Message ----- From: Kendon, Tim E To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, April 07, 2004 6:52 PM Subject: [GiDlist] (no subject) Dear GidList I am having difficulties with the structured concentration option of Gid 7.2 I have attached a *tif to illustrate the problem. The *tif plot shows the mesh for a 4 sided structured surface where I have attempted to apply the structured concentration option to the vertical sides. It is clear that on the sides (lines) themselves the structured concentration option is working fine. However within the body of the surface I get a rather inexplicable shape. I can get a variety of odd shapes e.g. if I swap negative start weights for positive end weights, or if I flip the normals of the vertical lines to the different senses. I should point out the structured concentration option does seem to work sometimes. I can't think what I could be doing wrong here? I hope someone can shed some light on this. If this has already been covered apologies. Many thanks in advance Tim Kendon -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] {SPAM?} Question about Material definition
Send by: Rama Karve Hi, Can anybody tell me what is wrong with this material definition? The problem seems to be the 'Z' option for the 'Direction' question. If I try to modify the value of 'Direction' to 'Z' through the 'Materials' dialog in GiD, the material does not get modified successfully. Moreover, if the default value is 'Z', I cannot even create a new material from 'Source'. However, if the 'Z' is removed from the material definition, ( i.e. QUESTION: Direction:#CB#(X,Y) ), everything works fine! NUMBER: 1 MATERIAL: Source QUESTION: Duration_of_pulse VALUE: 2e-8 QUESTION: Pulse_Offset VALUE: 6e-8 QUESTION: Center_Frequency_of_Pulse VALUE: 1 QUESTION: Source_Voltage VALUE: 1 QUESTION: Source_Resistance VALUE: 1 QUESTION: Direction:#CB#(X,Y,Z) VALUE: X END MATERIAL Thanks, Rama Karve ... [GiDlist] {SPAM?} Question about Material definition
Send by: Rama Karve Hi, Can anybody tell me what is wrong with this material definition? The problem seems to be the 'Z' option for the 'Direction' question. If I try to modify the value of 'Direction' to 'Z' through the 'Materials' dialog in GiD, the material does not get modified successfully. Moreover, if the default value is 'Z', I cannot even create a new material from 'Source'. However, if the 'Z' is removed from the material definition, ( i.e. QUESTION: Direction:#CB#(X,Y) ), everything works fine! NUMBER: 1 MATERIAL: Source QUESTION: Duration_of_pulse VALUE: 2e-8 QUESTION: Pulse_Offset VALUE: 6e-8 QUESTION: Center_Frequency_of_Pulse VALUE: 1 QUESTION: Source_Voltage VALUE: 1 QUESTION: Source_Resistance VALUE: 1 QUESTION: Direction:#CB#(X,Y,Z) VALUE: X END MATERIAL Thanks, Rama Karve ... [GiDlist] {SPAM?} Question about Material definition
Send by: Jorge Suit Perez Ronda Hi, the problem with the 'Z' value is that GiD considers that value as the name of an internal command: Zoom. This command, as others, can be issued in the middle of other commands so we must avoid ussing those values in conditions, materials, general data or interval data. regards, Jorge On Friday 09 April 2004 16:15, Rama Karve wrote: > Hi, > > Can anybody tell me what is wrong with this material definition? > > The problem seems to be the 'Z' option for the 'Direction' question. If I > try to modify the value of 'Direction' to 'Z' through the 'Materials' ... [GiDlist] {SPAM?} Question about Material definition
Send by: Enrique Escolano Until this bug is corrected inside GiD, can avoid it using another name instead "Z" (to avoid this conflict with the word "Zoom") Can use for example QUESTION: Direction#CB#(X_axe,Y_axe,Z_axe) Regards Enrique Escolano ----- Original Message ----- From: "Rama Karve" <rkarve at emagtechnologies.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Friday, April 09, 2004 4:15 PM Subject: [GiDlist] {SPAM?} Question about Material definition > Hi, > > Can anybody tell me what is wrong with this material definition? ... [GiDlist] Request for some data about Gauss point appr.
Send by: Andrea Calaon Hello everyone, I'm using Gauss point results in post-processing to visualize a stress tensor field which is actually very smooth (in many cases C infinite). At present I don't calculate the field values on the elements boundary. I use min and max as a means of evaluating the quality of the solution obtained. When using "Contour Fill" (or the smoothed one), I get legend values for the min and max which depend on the kind of local approximation used by GiD on the element in case of Gauss Points. Which is exactly the approximation GiD uses for displaying Gauss point results? A second question is: Would it be possible to give Gauss point coordinates laying on the element boundary or very near it? Thanks for any suggestion Have a nice day, Andrea Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Request for some data about Gauss point appr.
Send by: Enrique Escolano The Gauss point values are extrapolated to the nodes, using the "standard" Finite Element shape funcions. This is a polynomial (or product of polynomials in each direction) of degree n interpolates n+1 values, then using this function are extrapolated the nodal element values. The gauss point coordinates can be on the element boundary without problems. The values extrapolated to nodes are not continuous between neighbourg elements, for a smooth result must be calculated an averaged single nodal value. Regards Enrique Escolano ----- Original Message ----- From: "Andrea Calaon" <andrea at beasy.com... [GiDlist] Some problems with central info
Send by: Andrea Calaon Hello everyone, I'm using the following condition: BOOK: Automatic NUMBER: 14 CONDITION: Contour_Line CONDTYPE: over lines CONDMESHTYPE: over face elems QUESTION: ForSpectralElements VALUE: 0 STATE: HIDDEN END CONDITION I automatically assign a different material to every surface as suggested, and I use the Tcl command: set boundary_data [.central.s info conditions Contour_Line mesh] After having used it successfully for some time, always with quadrilaterals, I tried with Triangles but the triangular elements don't get listed at all. Thanks for any suggestion. Andrea Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Some problems with central info
Send by: Enrique Escolano Can you send a sample with triangles in which fail this info command [.central.s info conditions Contour_Line mesh] Enrique ----- Original Message ----- From: "Andrea Calaon" <andrea at beasy.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Wednesday, April 14, 2004 1:21 PM Subject: [GiDlist] Some problems with central info > Hello everyone, > > I'm using the following condition: > > BOOK: Automatic > NUMBER: 14 CONDITION: Contour_Line ... [GiDlist] Example for the
Send by: Andrea Calaon Dear GiD team, I append a "example.gid.zip" file with the geometry and the condition "Contour_Line" applied. NUMBER: 14 CONDITION: Contour_Line CONDTYPE: over lines CONDMESHTYPE: over face elements QUESTION: ForSpectralElements VALUE: 0 STATE: HIDDEN END CONDITION Every surface is a different material as you suggested me some time ago. The command: -np- WarnWinText [.central.s info conditions Contour_Line mesh] gives a Tcl list with all quadratical elements, but without the triangular elements (with IDs from 21 to 28). I need information on triangular elements as well. Thanks for any suggestion. Kind Regards Andrea Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Homepage: ... [GiDlist] Example for the
Send by: Enrique Escolano Yes, it's a bug transferring conditions over lines, over face elements, when the edge is a boundary between quadrilateral and triangular meshes. It's corrected for next beta 7.4.7b (not available now) Thanks for your bug report Enrique ----- Original Message ----- From: Andrea Calaon To: gidlist at gatxan.cimne.upc.es Sent: Thursday, April 15, 2004 5:20 PM Subject: [GiDlist] Example for the Dear GiD team, I append a "example.gid.zip" file with the geometry and the condition "Contour_Line" applied. NUMBER: 14 CONDITION: Contour_Line CONDTYPE: over lines CONDMESHTYPE: over face elements QUESTION: ForSpectralElements VALUE: 0 STATE: HIDDEN END CONDITION Every surface is a different material as you suggested me some time ago. The command: -np- WarnWinText [.central.s info conditions Contour_Line mesh] gives a Tcl list with all quadratical elements, but without the triangular elements (with IDs from 21 to 28). I need information on triangular elements as well. Thanks for any suggestion. Kind Regards Andrea Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Homepage: ... [GiDlist] Visualization in 3D
Send by: Billy Fälth Hello I have a question about how GID handles different sets in post processing mode. When I postprocess a 2D model, the different materials are put into different surface sets but when I post process a 3D model, I only get one volume set and no surface sets. Thus, I cant show the different material one by one. What can I do to come around this? When I mesh my 3D model, I only mesh the volumes. Do I need to mesh also the surfaces to get a better visualization in the postprocessor? Regards BF Billy Fälth Clay Technology AB Ideon Research Center S 223 70 Lund, SWEDEN Tel +46 46 286 25 81 Fax +46 46 13 42 30 www.claytech.se <... [GiDlist] Visualization in 3D
Send by: Steven Xilin Xu You need to put different materials into different volume sets in 3D -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] On Behalf Of Billy Fälth Sent: Thursday, April 22, 2004 10:18 AM To: gidlist at gatxan.cimne.upc.es Subject: [GiDlist] Visualization in 3D Hello I have a question about how GID handles different sets in post processing mode. When I postprocess a 2D model, the different materials are put into different surface sets but when I post process a 3D model, I only get one volume set and no surface sets. Thus, I cant show the different material one by one. What can I do to come around this? When I mesh my 3D model, I only mesh the volumes. Do I need to mesh also the surfaces to get a better visualization in the postprocessor? Regards BF Billy Fälth Clay Technology AB Ideon Research Center S 223 70 Lund, SWEDEN Tel +46 46 286 25 81 Fax +46 46 13 42 30 www.claytech.se <... [GiDlist] Visualization in 3D
Send by: Enrique Escolano It exists a variable: PropertyToPost You can set its value to Layer (default) or to Material Set this variable, for example to layer with: Utilities Variables PropertyToPost Layer Then, if you separate your volumes in different layers, when you change from pre to postprocess, the elements are also separated in sets. Enrique Escolano ----- Original Message ----- From: Billy Fälth To: gidlist at gatxan.cimne.upc.es Sent: Thursday, April 22, 2004 4:18 PM Subject: [GiDlist] Visualization in 3D Hello I have a question about how GID handles different sets in post processing mode. When I postprocess a 2D model, the different materials are put into different surface sets but when I post process a 3D model, I only get one volume set and no surface sets. Thus, I can't show the different material one by one. What can I do to come around this? When I mesh my 3D model, I only mesh the volumes. Do I need to mesh also the surfaces to get a better visualization in the postprocessor? Regards BF Billy Fälth Clay Technology AB Ideon Research Center S 223 70 Lund, SWEDEN Tel +46 46 286 25 81 Fax +46 46 13 42 30 www.claytech.se -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] More about visualization in 3D
Send by: Billy Fälth Hello again I have tried to separate my volumes in layers and then I get different sets when switching into post process mode. But this only works when there is no flavi.res file present. If I have run an analysis and generated a flavia.res file, I only get one volume set when post processing. What is wrong? There is an .msh file. Is this file used by GID? When I try to open it in the post processor I get the error message: Too few parameters: in this line: 7 - Reading Mesh. Regards /bf Billy Fälth Clay Technology AB Ideon Research Center S 223 70 Lund, SWEDEN Tel +46 46 286 25 81 Fax +46 46 13 42 30 www.claytech.se <... [GiDlist] More about visualization in 3D
Send by: Enrique Escolano Your analysis must not write the *.msh file, if not strictly necessary (only is necessary, for example, if the postprocess mesh must be different of the preprocess one) If exists this postprocess *.flavia.msh file, then it's readed instead the preprocess mesh, and this is probably the cause of the error message Enrique ----- Original Message ----- From: Billy Fälth To: gidlist at gatxan.cimne.upc.es Sent: Monday, April 26, 2004 3:02 PM Subject: [GiDlist] More about visualization in 3D Hello again I have tried to separate my volumes in layers and then I get different sets when switching into post process mode. But this only works when there is no flavi.res file present. If I have run an analysis and generated a flavia.res file, I only get one volume set when post processing. What is wrong? There is an .msh file. Is this file used by GID? When I try to open it in the post processor I get the error message:" Too few parameters: in this line: 7 - Reading Mesh." Regards /bf Billy Fälth Clay Technology AB Ideon Research Center S 223 70 Lund, SWEDEN Tel +46 46 286 25 81 Fax +46 46 13 42 30 www.claytech.se -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Un able to mesh
Send by: Khaled Obeidat Hello GID people, I am trying desperately to mesh a simple rectangle volume (100*65*3.18) using Tetrahedral of mesh size 0.5. Can you please help me in meshing this structure. Khaled Khaled Obeidat Research Engineer EMAG Technologies, Inc. www.emagtechnologies.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040429/0aaab0f8/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: FDTD_Proximity1.zip Type: application/zip Size: 945 bytes Desc: not available Url : ... [GiDlist] Un able to mesh
Send by: Ramon Ribó
Hello,
You are trying to mesh the model with "only points", instead of
tetrahedra. Try to
use: Meshing->Elemtype->Tetrahedra and apply it to the volume.
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com <http://www.compassis.com/>
ramsan at compassis.com
c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82
08034 Barcelona, Spain fax. +34 93 204 19 09
-----Mensaje original-----
De: gidlist-admin at gatxan.cimne.upc.es...
[GiDlist] Un able to mesh
Send by: Khaled Obeidat I did that but it didn't work. At 10:59 AM 4/29/2004, you wrote: > > Hello, > > You are trying to mesh the model with "only points", instead of > tetrahedra. Try to >use: Meshing->Elemtype->Tetrahedra and apply it to the volume. > > Regards, > >-- >Compass Ing. y Sistemas Dr. Ramon Ribo ><http://www.compassis.com/>http://www.compassis.com ramsan at compassis.com... [GiDlist] Un able to mesh
Send by: Ramon Ribó
Hello,
I tried it and it worked for me. How much memory do you have in your
computer? As the mesh size is quite small, I would recommend at least
512Mb of RAM.
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com <http://www.compassis.com/>
ramsan at compassis.com
c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82
08034 Barcelona, Spain fax. +34 93 204 19 09
-----Mensaje original-----
De: gidlist-admin at gatxan.cimne.upc.es...
[GiDlist] adding a point to a geometry
Send by: Gassan Abdoulaev Hello,
Is it possible to add a point (points)
to an existing geometry, say, a cylinder,
so that the GID mesh generator will produce
mesh nodes at given points.
Thank you in advance!
Gassan
--
----------------------------------------------------
Gassan Abdoulaev, PhD
Dept. of Biomedical Engineering
Columbia University
Mudd Bldg., ET351, Mail Code 8904
500 West 120th Street, New York, NY 10027, USA
phone: (212)854 5737
fax: (212)854 8725
email: ...
[GiDlist] adding a point to a geometry
Send by: Enrique Escolano No, to force the mesh to share this node it's necessary to divide this cilinder with a surface that contain as boundary a line that contain this point. Enrique ----- Original Message ----- From: "Gassan Abdoulaev" <gsa2001 at columbia.edu> To: <gidlist at gatxan.cimne.upc.es> Sent: Thursday, April 29, 2004 4:08 PM Subject: [GiDlist] adding a point to a geometry > Hello, > > Is it possible to add a point (points) > to an existing geometry, say, a cylinder, ... [GiDlist] adding a point to a geometry
Send by: Gassan Abdoulaev Well, this is very inconvenient. There are many situations when it's necessary to add a node, or a line, or a surface. Thank you anyway. Gassan Enrique Escolano wrote: > No, to force the mesh to share this node it's necessary to divide this > cilinder with a surface that contain > as boundary a line that contain this point. > > Enrique > > ----- Original Message ----- > From: "Gassan Abdoulaev" <gsa2001 at columbia.edu> > To: <gidlist at gatxan.cimne.upc.es... [GiDlist] Color en cond
Send by: Jesús Franco Hola, ¿es posible asignar distintos colores a los símbolos de las condiciones? Saludos -- Jesús Franco Calpe Institute of Technology C/ Luna nº 11. 11205- Algeciras. Spain e-mail:jesus at caltech.es Tlf y Fax: (34) 956 651251 http://www.caltech.es [GiDlist] Color en cond
Send by: Enrique Escolano Actualmente no es posible asignar colores a los simbolos de condiciones de manera estándar. Por otra parate ahora existe una nueva posibilidad de dibujar directamente en la ventana central de GiD con instrucciones de OpenGL, desde lenguaje Tcl-Tk. Esto permite nuevas maneras de personalizar GiD, mediante una instrucción se puede registrar nuestra propia función de dibujado, de forma que se llame cuando el usuario quiere ver dibujada la condición. Si está interesado en hacer una personalización avanzada usando esta prestación, podemos enviarle más información al respecto. Enrique Escolano ----- Original Message ----- From: "Jesús Franco" <... [GiDlist] Prism elements
Send by: Philippe Bouchilloux Hello: I now that GiD includes prism elements (they can be obtained only by extruding a 2D triangle mesh). However, these elements are linear. Are there any plans for extending these elements to quadratic and for integrating them into the structured mesher? Thanks. Philippe Magsoft Corporation Tel: 518-271-1352 Cell: 518-810-8868 (direct) www.magsoft-flux.com [GiDlist] Prism elements
Send by: Ramon Ribó Hello, There is currently some development for dealing with prisma elements in GiD. By now, the development is centered in the postprocessing part. In the future it can include the additional capabilities that you are asking for. Regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82 08034 Barcelona, Spain fax. +34 93 204 19 09 -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es... [GiDlist] new GiD 7.4.7b beta version
Send by: Enrique Escolano Hello GiD users. A new GiD 7.4.7b beta version is available to download, by now only for Windows ( this week the Linux version will be ready) It can be downloaded from: http://www.gidhome.com/download/do07.subst This is a detailed (but not completely exhaustive) list of new features and corrected bugs (since version 7.4.6b, february): New features: - New smoother and quality measure, mesh quality check also by maximum edge. - Saved auxiliary render file, to avoid recalculate it each time the model is openned. - Optional variable GidPriv(CalculationFileExtension) to define the default extension for the calculation file of the problemtype (it's also possible to set an extension from a .bas file located in /templates) - New bas commands: *ElemsMatProp, *SetFormatNastran - Undo window with commands grouped by colors, and optional compact visualization style - New dev_kit tcl procedures: GidUtils::PickEntities (now it can also select Dimensions and AllTypes) GidUtils::SetCurrentLanguage (to set the language and it updates the menus, and windows) GiD_FormatReal <format> <realnum> ?forcewidth|forcewidthnastran? (To get formatted real numbers) GidUtils::CreateAdvanceBar, GidUtils::UpdateAdvanceBar, GidUtils::DeleteAdvanceBar (Functions to easily use an AdvanceBar) - New tcl procedures to customize standard conditions, material, etc windows: GiD_BookBehaviour, GiD_MaterialBehaviour and GiD_ConditionBehaviour - Enhanced divide sets, including both sides if desired - Postprocess import of binary Femap results file (.nfo) v1.0 Corrections: - Don't close the current project when the action of openning a new project is cancelled - Don't ask the user to delete old temporary files - Corrections on sweep function - Correct render smooth normals when user swap the normals - Corrections transferring conditions over face elements - Corrections of bad connectivities when generating structured hexahedrals linked with serial contact volumes - Less memory required when generating structured meshes with lots of source geometric entities. - Support layer names with spaces. - New tcl GiD_Process command, to be used instead .central.s process (now using Tcl-like list style), and GiD_Info instead .central.s info - Call to EndGidProject when user quits. - Corrections on material and condition field dependencies - #MAT# fields refreshed when adding or removing materials - Corrected crash when listing many elements in postprocess - Corrected and enhanced post cuts. - Corrections on streamlines creation - Corrections with gauss point results, and quadratic results (contour fill, smooth contour fill, etc) _______________________________________________________ Best regards The GiD Team -------------- next part -------------- An HTML attachment was scrubbed... URL: ... Fw: [GiDlist] new GiD 7.4.7b beta version
Send by: Enrique Escolano Sorry, but the last GiD 7.4.7b beta version has a small bug using field values with spaces for materials and conditions. Now is corrected and updated on the same web page: http://www.gidhome.com/download/do07.subst The users than have downloaded this version today (may 04 2004) must re-download it to fix this bug. _______________________________________________________ Best regards The GiD Team -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040504/36227208/attachment.htm... [GiDlist] RamDebugger
Send by: Jose Antonio Fernandez Hello, I would like to use RamDebugger with GID 7.4.7b under windows. I have installed RamDebugger. I have modified the file Tclfile-opengl.tcl in order to update the directory where RamDebugger is installed. After executing GiD and looking for it in RamDebugger 'File->Debug on' (even after Update remotes) Gid doesn't appear. Could you help me? What is wrong? Thanks a lot, best regards. Jose Antonio [GiDlist] RamDebugger
Send by: Ramon Ribó Hello,
You must change tclfile-opengl.tcl from:
-----------------------------------------------
if { $tcl_platform(platform) == "windows" && $GidPriv(Configuration) ==
"debug" } {
catch {
# enter here the path where you have installed RamDebugger,
subdirectory addons
# for example: c:Program filesRamDebuggeraddons
lappend auto_path {c:gid projectRamDebuggeraddons}
package require commR
comm::register gid 1
}
}
bind all <F12> {
# enter here the path where you have installed RamDebugger
# for example: c:Program filesRamDebugger
lappend auto_path {c:gid projectRamDebugger}
lappend auto_path {E:ProgramasActiveTcl8.4.1.0lib}
lappend auto_path {E:ProgramasActiveTcl8.4.1.0lib cl8.4}
catch { package require RamDebugger }
}
------------------------------------------------------------------------
---
To:
------------------------------------------------------------------------
---
if { $tcl_platform(platform) == "windows" } {
catch {
# enter here the path where you have installed RamDebugger,
subdirectory addons
# for example: c:Program filesRamDebuggeraddons
lappend auto_path {c:mypath oRamDebuggeraddons}
package require commR
comm::register gid 1
}
}
bind all <F12> {
# enter here the path where you have installed RamDebugger
# for example: c:Program filesRamDebugger
lappend auto_path {c:mypath oRamDebugger}
catch { package require RamDebugger }
}
------------------------------------------------------------------------
---
If you want to have better diagnostics of the problem, take the
'catch' out.
If everything is OK, you will be able to use RamDebugger in two
modes:
- As external debugger, Opening RamDebugger and selecting: Files->Debug
on->GiD
- Or just pressing key 'F12' inside GiD
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
...
[GiDlist] RamDebugger
Send by: Enrique Escolano Remember to set the global variable GidPriv(Configuration) to debug Inside the file 'ConfigureProgram.tcl', comment and uncomment the appropiate lines: #set GidPriv(Configuration) release set GidPriv(Configuration) debug Enrique Escolano ----- Original Message ----- From: "Jose Antonio Fernandez" <Jose.A.Fernandez at cedex.es> To: <gidlist at gatxan.cimne.upc.es> Sent: Tuesday, May 11, 2004 5:59 PM Subject: [GiDlist] RamDebugger > Hello, > > I would like to use RamDebugger with GID 7.4.7b under windows. ... [GiDlist] present cracks in reinforced concrete
Send by: hoang nguyen An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040512/d3778846/attachment.htm [GiDlist] present cracks in reinforced concrete
Send by: Enrique Escolano Maybe you can write another auxiliary mesh, for postprocess pourposes only. Can duplicate and move the nodes to show a crack Can also try to write as result some scalar "damage" parameter. Regards Enrique ----- Original Message ----- From: hoang nguyen To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, May 12, 2004 2:27 PM Subject: [GiDlist] present cracks in reinforced concrete Hi All, I would like to present cracks in reinforced concrete. The direction of crack can be presented by principal strain direction. As a crack only occurs when tensile strain greater than cracking limit, cracks in concrete could be presented by those principal strain vectors, which are greater than the cracking limit. This is a possible way to show cracks. It may work or not. Could anybody have any idea how to present cracks either by this way or any other ways? Thank you in advance. Regards, Hoang ------------------------------------------------------------------------------ FREE pop-up blocking with the new MSN Toolbar - get it now! _______________________________________________ GiDlist mailing list ... [GiDlist] Prism elements
Send by: Blottman John B III NPRI Hello: I noticed the recent request for a quadratic prism element. This would be a very useful addition. It would improve the efficiency of meshing with Hexahedrals. I would like to also request a Pyramidal element. This would permit structured meshing where necessary, mated to unstructured meshing where possible. This is very important for acoustics. Thanks, John John B Blottman, Ph.D Naval Undersea Warfare Center Division Newport Code 15231 1176 Howell Street Newport, RI 02841-1708 [GiDlist] Font type
Send by: Andres Peratta Is there any way to change the font size (and type ) of the names of the Layers in the Layer window ? I have version 7.4.7b of GID for Linux. Many thanks ! Andres -------------------------------------------------------- The problem is that the names of the Layers, in the Layers window, appear in very small fonts, and when I define a relatively large list of layers (let's say, more than 10) then the names start to shift from their corresponding incons (the ones that indicate colour - lock/unlock - freeze/thaw). Thus, the text does not follow a correspondence to those icons and it becomes very difficult to know the status of a certain layer. ... [GiDlist] Font type
Send by: Philippe Bouchilloux Hi: Just to add that I have noticed the same problem. Initially I thought it was a glitch with my graphics card, but I have seen this "icon shift" on many machines. Maybe it's just a small offset in the alignment between the icons and the layer names that becomes annoying if many layers are used. Philippe At 5/28/2004 12:45 PM, you wrote: >Is there any way to change the font size (and type ) >of the names of the Layers in the Layer window ? >I have version 7.4.7b of GID for Linux. >Many thanks ! >Andres >-------------------------------------------------------- >The problem is that the names of the Layers, in the Layers window, ... [GiDlist] Font type
Send by: Enrique Escolano
Now it's not possible to change this font from the preferences window.
You can cange it only from tcl,
For example, try to write this tcl order in the lower command line:
-np- $::wChangeLay.middle.list.tx configure -font {size 9}
-np- $::wChangeLay.middle.list.lb configure -font {size 11}
(the current default sizes are 7 and 8)
What's your operating system?
If your platform is Windows, What's your current combination of fonts?
(Windows Screen properties->Appareance-> Combination , Fonts)
We can try to solve this problem for next beta versions
Regards
Enrique Escolano
----- Original Message -----
From: "Andres Peratta" <...
[GiDlist] Font type
Send by: Philippe Bouchilloux Hello: On my side, the problem occurs on a P3 running Win2k 5.00.2195 SP4 with normal sized fonts (windoze font = tacoma 8pt). The labels are slightly skewed from the second label onward. After about 9 labels, the shift is about one full color block. I have another Win2K machine, and an XP laptop, that do not have the problem. Regards, Philippe >What's your operating system? >If your platform is Windows, What's your current combination of fonts? >(Windows Screen properties->Appareance-> Combination , Fonts) > >We can try to solve this problem for next beta versions ___________________________________________ Philippe Bouchilloux, Ph.D. Magsoft Corporation 1223 Peoples Avenue Troy, NY 12180 Tel.: 518-271-1352 Fax: 518-271-8366 ... [GiDlist] Font type
Send by: Enrique Escolano The alignment problems of colors and names in the Layers window (using some fonts) are solved for the last GiD7.4.9b beta version. This Layers window was updated and now it seems nicer using a new table look. Regards Enrique Escolano ----- Original Message ----- From: Philippe Bouchilloux To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, June 02, 2004 1:47 PM Subject: Re: [GiDlist] Font type Hello: On my side, the problem occurs on a P3 running Win2k 5.00.2195 SP4 with normal sized fonts (windoze font = tacoma 8pt). The labels are slightly skewed from the second label onward. After about 9 labels, the shift is about one full color block. I have another Win2K machine, and an XP laptop, that do not have the problem. Regards, Philippe What's your operating system? If your platform is Windows, What's your current combination of fonts? (Windows Screen properties->Appareance-> Combination , Fonts) We can try to solve this problem for next beta versions ___________________________________________ Philippe Bouchilloux, Ph.D. Magsoft Corporation 1223 Peoples Avenue Troy, NY 12180 Tel.: 518-271-1352 Fax: 518-271-8366 ... [GiDlist] Re: Font type
Send by: Andres Peratta Thank you for your reply !. I'm not sure but I think there is no problem with Windows. The problem with the font appears in Linux platforms. My platform is Linux, my operating system is : Linux Redhat 8 kernel version: 2.4.20-28.8smp gcc version: gcc-3.2-7 I am currently using GID version 7.4.7b. I did not have such problem with fonts in the GID release 7.1.4b for Linux, neither in the previous ones of 7.1.4b. Hope this helps. Best regards, Andres [GiDlist] Re: Font type
Send by: Enrique Escolano This problem was appear when GiD is update from tcl/tk 8.3.3 to tcl/tk 8.4 (because this new Tk release was changed the text an listbox widget previous heights) Enrique Escolano ----- Original Message ----- From: "Andres Peratta" <andres at wessex.ac.uk> To: <gidlist at gatxan.cimne.upc.es> Sent: Tuesday, June 01, 2004 6:38 PM Subject: [GiDlist] Re: Font type > Thank you for your reply !. > I'm not sure but I think there is no problem with Windows. > The problem with the font appears in Linux platforms. ... [GiDlist] Animations
Send by: Philippe Bouchilloux Hello: I need to create animations of my results. My results are typically composed of U and phi (those are calculated nodal data), so I create an animation with n frames based on U·sin(2·pi·t + phi) where t varies from 0 to 1 by increments of 1/n. The important point here is that both U and phi are nodal vectors, which means that 2 sets of nodal results are used to generate this animation. At the current time, the only method I found to create this animation in GiD is by created a temporary _flavia.res file containing my n frames. To run the animation, I need to generate, save, then load this _flavia.res file. I have also had to modify the original animation controls (PostAnimate.tcl) so that the undeformed position does not get plotted with running an endless animation (frame 0 does not necessarily correspond to rest position). When the animation is finished, I have to reload the computation result, so that I can pick another case to animate. So this is working, but is somewhat cumbersome and slow. Furthermore, it looks like that the changes in the more recent GiD betas are incompatible with my previous tweaking of the animation controls. You have included (a few releases back) a nice method to generate the animation of a static analysis (with linear, triangular, sine, etc. interpolation). Here, only one data set (the deformation U) is used, but the interpolation is done on the fly, hence it is quick and clean. This is exactly what I am trying to do, except I need to be able to select my results (2 data sets for both U and phi vectors) before starting the animation. I have looked for a script for this static animation in the scripts library, but found none, so I guess this is part of the compiled source. The question is the following: Is there any way I can integrate my animation in the same way that you did the static animation (generated on the fly), or do I have no other alternative than using my intermediate _flavia.res file? Thanks! Philippe ... [GiDlist] Animations
Send by: Enrique Escolano At this moment, the only way is written and reading a postprocess file, but for next versions we planned to add a new command to create/delete results. (then with a tcl script will be created 'on the fly' a derivated result ) Enrique Escolano ----- Original Message ----- From: "Philippe Bouchilloux" <pb at magsoft-flux.com> To: "GiDList" <gidlist at gatxan.cimne.upc.es> Sent: Wednesday, June 02, 2004 2:43 PM Subject: [GiDlist] Animations > Hello: > >... [GiDlist] Isosurface Smoothing
Send by: Zhihong Liu Hi, I met a problem with "isosurface" in postprocessing. The isosurface was used in my heat transfer analysis to show certain temperature profile evolution. The isosurface, however appears some sharp corners, due to the disretization of tetrahedral elements. Theoretically the temperature profile should be a smooth one. Therefore, I am wondering if GiD has functions, like filters that can filter our the high-order corners and keep a nearly smooth surface. Many thanks. Zhihong Liu Civil Engineering University of Calgary -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040604/889b3abc/attachment.htm... [GiDlist] RamSeries
Send by: Nacho Hola a todos!! Me gustaría saber si existe algún foro de RamSeries (Ramshell). Gracias ICM ETSECCPB-UPC -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040604/cc36d386/attachment.htm [GiDlist] RamSeries
Send by: Enrique Escolano Actualmente no existe dicho foro especializado en RamSeries. Si quieres puedes hacer tus consultas al respecto en este mismo foro y trataremos en lo posible de contestarlas. Enrique Escolano ----- Original Message ----- From: Nacho To: gidlist at gatxan.cimne.upc.es Sent: Friday, June 04, 2004 4:38 PM Subject: [GiDlist] RamSeries Hola a todos!! Me gustaría saber si existe algún foro de RamSeries (Ramshell). Gracias ICM ETSECCPB-UPC -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040607/05bb8083/attachment.htm... [GiDlist] Foro de GID
Send by: Marcias Martinez Hola Amigos de Foro de GID, Hace poco me registre al foro de correos electronicos de GID. Aunque el sistema funciona bastante bien, yo he estado experimentando con un foro en pagina web de la empresa de mi padre. El foro se puede bajar de la pagina http://www.phpbb.com/ es bastante facil de instalar y de administrar. Tal vez ustedes estarian interesados en usar este tipo de foro. El foro puede instalarse en varios idiomas y el usuario determine en que idioma desea ver las opciones del menu. Es solo una sugerencia. Saludos Marcias Martinez -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] DrawNormals - Bug?
Send by: Philippe Bouchilloux Hello: I'm not sure if the following problem is already known or not. Sorry if this is a repeat. If you draw an arc, and mesh it with quadratic 3-node elements, then drawing the normals (Utilities | Draw Normals | Elements) is only possible when the Preferences "draw quadratic elements," under Graphical, is set to "No." Setting it to "AsLines" or "AsCurves" causes GiD to crash. This seems consistent on Windows platforms, and versions 7.2 and 7.4.7b. Regards, Philippe [GiDlist] DrawNormals - Bug?
Send by: Jorge Suit Perez Ronda You are right, and thanks for the report. The fix will be available in the next beta version. regards, Jorge On Friday 11 June 2004 15:36, Philippe Bouchilloux wrote: > Hello: > > I'm not sure if the following problem is already known or not. Sorry if > this is a repeat. > > If you draw an arc, and mesh it with quadratic 3-node elements, then > drawing the normals (Utilities | Draw Normals | Elements) is only possible > when the Preferences "draw quadratic elements," under Graphical, is set to > "No." Setting it to "AsLines" or "AsCurves" causes GiD to crash. ... [GiDlist] copy and create mesh failed
Send by: Aphrodite Kerylidis Hello, I have installed the professional GID version 7.2 on my linux Redhat 8.0 computer. Everything works fine except when trying to copy and generate mesh in the postprocessing mode. My postprocessing files are written in the new format and I can open and visualize my results. I can also copy the existing mesh and view it, but I can NOT generate the copied new mesh afterwards. If I try to do it, the whole program always breaks down. I have now tried to utilize on my other computer, which has installed Linux and Windows 2000 as well, older and newer versions of GID (6.2,7.1,7.4.7), but in vain. What might be the reason for this problem? Thanks for any help. Aphrodite __________________________________ Do you Yahoo!? Yahoo! Mail is new and improved - Check it out! ... [GiDlist] copy and create mesh failed
Send by: Philippe Bouchilloux Hi: I think I have had the same issues. I am usually using quadratic elements, and during mesh operations in the postprocessing, in particular (but not only) for extrusions, GiD bombs. Although there has been times when it works (this is maybe also connected to displaying quadratic elements as curves). Try the latest beta (7.4.7b on Windows). It seems to be a lot more stable in that department. It usually works for me, at least. Philippe >I have installed the professional GID version 7.2 on >my linux Redhat 8.0 computer. Everything works fine >except when trying to copy and generate mesh in the >postprocessing mode. My postprocessing files are ... [GiDlist] copy and create mesh failed
Send by: Miguel A. Pasenau de Riera Hi, What do you mean with 'generate mesh'? Do you mean to use the 'create' option of the Utilities->copy window? Can you send us an example and the exact steps you followed to get to error? Have you tried the latest 7.4.9? Thanks in advance miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Aphrodite Kerylidis Enviado el: jueves, 01 de julio de 2004 19:04 Para: gidlist at gatxan.cimne.upc.es... [GiDlist] floating point precision
Send by: Rama Karve Hi, I am using Files -> Export -> Text Data Report to get the geometry information. How do I change/increase the floating point precision for the coordinates and other numerical data that are written to the file? Thanks, Rama Karve __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com [GiDlist] Windows Uninstall
Send by: Philippe Bouchilloux Hello: It looks like the Uninstall under Windows is shared among all installations of GiD. For instance, on my system (Win XP), I have 7.2, 7.4.7b, and 7.4.9b. If I try to uninstall any of those, the uninstaller asks "Are you sure you want to completely remove 'GiD 7.4.9b' and all of its components?". So it looks like the uninstaller is not looking for the correct uninst file. Philippe PS: As a follow-up to the previous question about the copy in the postprocess: I have often had problems when starting from a 2D axisymmetric mesh, and trying to recreate the 3D by rotation/extrusion. My elements are always all quadratic. Again, this seems to be working well since 7.4.x versions. ... [GiDlist] Windows Uninstall
Send by: Enrique Escolano Yes, we have some problem with the installation program when are installed several GiD versions. The uninstaller message is bad, but if you avoid this erroneous message, it really uninstall the desired version. Regards Enrique Escolano ----- Original Message ----- From: "Philippe Bouchilloux" <pb at magsoft-flux.com> To: "GiDList" <gidlist at gatxan.cimne.upc.es> Sent: Friday, July 02, 2004 9:00 PM Subject: [GiDlist] Windows Uninstall > Hello: > > It looks like the Uninstall under Windows is shared among all ... [GiDlist] Re: copy and create mesh failed
Send by: Aphrodite Kerylidis Hi Miguel, I have installed recently version 7.4.7b due to my problem I have got. I briefly describe the steps I am doing which lead to the crash: # My program has calculated half of the system's deformation figure and has generated out of its internal data the output files deformation.msh and deformation.res. This is possible, because the problem is symmetric and can be mirrored. I will send both file as attachment. # I open the files in the postprocessing mode and can now visualize half of the system's deformed mesh. # Then I am going to mirror the figure in order to make it whole with * utilities->copy * switch there on mirror and two dimensions * pick to corner nodes * change to create * and press "do it" # Then with version 7.4.7 (I used before 7.2) no crash is happening, but instead I get a error message in Tcl script: Can't read "PostCopyInfo(PostDuplicateWhat)": No such element in array # Now I press either ok or skip and the message window disappears, but the mirroring is not done. # However I just want to view and not to create the mirrored figure, this works. Aphrodite >... [GiDlist] Re: copy and create mesh failed
Send by: Miguel A. Pasenau de Riera Hi Aphrodite, Yes, there was a problem with this variable and its solved in the last gid 7.4.9b version. Today or tomorrow this version will be available for Linux. Thanks for your patience. miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Aphrodite Kerylidis Enviado el: sábado, 03 de julio de 2004 10:42 Para: gidlist at gatxan.cimne.upc.es... [GiDlist] Re: copy and create mesh failed
Send by: Miguel A. Pasenau de Riera I posted today the gid version 7.4.9b for Linux, so you can download it from ftp://www.gidhome.com/pub/gid_adds/Linux Best regards miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Aphrodite Kerylidis Enviado el: sábado, 03 de julio de 2004 10:42 Para: gidlist at gatxan.cimne.upc.es... [GiDlist] *ElemsConec
Send by: Marcias Martinez Hola Enrique, Hola Gente de GID No se si la pregunta sobre la enumeracion de la topologia fue bien interpretada. Asi que voy a intentar hacer la pregunta desde otro punto de vista. El archivo de calculo, utiliza la funcion *ElemsConec, que segun el archivo de ayuda de GID dice: "This command writes the element's connectivities, i.e., the list of the nodes that belong to the element, keeping the proper sense for each case (anti-clockwise sense in 2D and depending on the standards in 3D). For shells, the user must define the sense. However, this command accepts the argument swap and this implies that the ordering of the nodes in quadratic elements will be inverted. The connectivities are considered as integer numbers (see *intformat and *format)." Este es el tema en que estaba tratando de entender. Segun esta explicacion de GID dice que la topologia es escrita para cada elemente manteniendo el sentido propio en cada caso (en dos dimensiones un sentido contra el reloj mientras que en 3D siguen un Standard). Mi pregunta es entonces que "Standard" en 3D sigue el vector de topologia? Especificamente en el caso de Hexahedros (8 and 20 node bricks). $ ELEMENT. MATERIAL. TOPOLOGY + 6 8 7 2 3 5 4 1 Gracias de antemano, Marcias ... [GiDlist] *ElemsConec
Send by: Enrique Escolano Hello Marcias. I request in English, because it's better to understand for the other GiDlist users. The 3D element rules are the related in my previous e-mail: For a 8-noded hexahedra, the connectivities is a list of 8 node numbers (integers >0): a b c d e f g h - The first 4 nodes (a b c d) define the first implicit face. This squared face can be in any space location (no necessary must be parallel to the XY plane, etc). The first face of a element is arbitrary selected. - The vector defined by the vector product (ab)X(bc) always point to the element interior (to the semispace containind the opposite face (e f g h) The relative element connectities are showed in the figures of help-meshing-element type ... [GiDlist] postprocess - problem reading file
Send by: Giang Nguyen Dear all, Would any one here please let me know what happens with my data files (attached herewith), as the following error message always appears every time I open the files, although I have all the required section for a post-process in my .res file? No 'Values' section found before the EOF in line 12 of file 'f:/my documents/gid data/4pshear2.res'. Thank you in advance. Regards, Giang P.S. I'm new to GiD and using the academic version at the moment. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040709/690340b2/attachment.htm... [GiDlist] postprocess - problem reading file
Send by: Enrique Escolano To avoid this error message, must end with a carriage return your last result file line: "End Values" Regards Enrique Escolano ----- Original Message ----- From: Giang Nguyen To: gidlist at gatxan.cimne.upc.es Sent: Friday, July 09, 2004 12:07 PM Subject: [GiDlist] postprocess - problem reading file Dear all, Would any one here please let me know what happens with my data files (attached herewith), as the following error message always appears every time I open the files, although I have all the required section for a post-process in my .res file? No 'Values' section found before the EOF in line 12 of file 'f:/my documents/gid data/4pshear2.res'. Thank you in advance. Regards, Giang P.S. I'm new to GiD and using the academic version at the moment. -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] postprocess - problem reading file
Send by: Giang Nguyen Thanks a lot Enrique. The values of quantities at Gauss points can be read now. However, somehow they cannot be plotted out, although the max and min values appear correctly in the box above the command line. I have tried with nodal quantities and it is OK, but still could not plot out anything at Gauss points. Would you and any others here mind having a look at the problem again? Thank you very much in advance. Regards, Giang ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.es Sent: Friday, July 09, 2004 5:35 PM Subject: Re: [GiDlist] postprocess - problem reading file To avoid this error message, must end with a carriage return your last result file line: "End Values" Regards Enrique Escolano ----- Original Message ----- From: Giang Nguyen To: ... [GiDlist] postprocess - problem reading file
Send by: Enrique Escolano It exists another problem in your file: The mesh name defined inside your .msh file is "4-point shear test 2" GiD Post Results File 1.0 MESH "4-point shear test 2" dimension 2 ElemType Triangle Nnode 6 But your 3pG gauss points are defined for a mesh named "4pshear2" GiD Post Results File 1.0 GaussPoints "3pG" ElemType Triangle "4pshear2" Must use the same mesh name, "4-point shear test 2" or "4pshear2", inside this two files Note: for the mesh file avoid the header line GiD Post Results File 1.0, it's only for the results file. Regards Enrique Escolano ----- Original Message ----- From: Giang Nguyen To: gidlist at gatxan.cimne.upc.es... [GiDlist] postprocess - problem reading file
Send by: Giang Nguyen Thank you very much Enrique. It works well now. Giang ----- Original Message ----- From: Enrique Escolano To: gidlist at gatxan.cimne.upc.es Sent: Tuesday, July 13, 2004 2:05 PM Subject: Re: [GiDlist] postprocess - problem reading file It exists another problem in your file: The mesh name defined inside your .msh file is "4-point shear test 2" GiD Post Results File 1.0 MESH "4-point shear test 2" dimension 2 ElemType Triangle Nnode 6 But your 3pG gauss points are defined for a mesh named "4pshear2" GiD Post Results File 1.0 GaussPoints "3pG" ElemType Triangle "4pshear2" Must use the same mesh name, "4-point shear test 2" or "4pshear2", inside this two files Note: for the mesh file avoid the header line GiD Post Results File 1.0, it's only for the results file. Regards Enrique Escolano ----- Original Message ----- From: Giang Nguyen To: ... [GiDlist] view reslts(displacements/stress) with range of color?
Send by: De silva mahinda An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040713/f6476bb2/attachment.htm [GiDlist] view reslts(displacements/stress) with range of color?
Send by: Miguel A. Pasenau de Riera I understand that you are speaking of the ContourFill representation. This can be due two things: 1. the min. and max. limits of the contour fill scale have been changed, or 2. the min.and max. colours have been changed. Wth the menu entry 'Options->Contour->Reset All' you will get the default colours for the contour fill, and the default limits. best regards miguel _____ De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de De silva mahinda Enviado el: martes, 13 de julio de 2004 4:02 Para: ... [GiDlist] view reslts(displacements/stress) with range of color?
Send by: De silva mahinda An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040714/54d55d7b/attachment.htm [GiDlist] Cast3M
Send by: Nacho Hola!! ¿Es posible realizar un postproceso con Gid de un problema dinámico resuelto con Cast3M? ¿Cómo puedo hacerlo ? Gracias. Ignacio ETSECCPB -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040714/57488fe7/attachment.htm [GiDlist] Cast3M
Send by: Enrique Escolano GiD cannot directly read Cast3M results. You must transform this results in a GiD postprocess file. This format is documented in the GiD help: see "Postprocess data files" GiD can also read FEMAP neutral results files, and Tecplot results files. I unknow if Cast3M can export this kind on files. Regards Enrique Escolano ----- Original Message ----- From: Nacho To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, July 14, 2004 7:12 PM Subject: [GiDlist] Cast3M Hola!! ¿Es posible realizar un postproceso con Gid de un problema dinámico resuelto con Cast3M? ¿Cómo puedo hacerlo ? Gracias. Ignacio ETSECCPB -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Label Numberying in the GID 7.49
Send by: Marcias Martinez Hi Enrique, I think the label numberying in GID beta 7.49 is not working correctly. Here is two JPG files, one done in 7.2 and another in 7.49 (the same result file). The label attached to each node is totaly different. The 7.2 label numberying makes sense the 7.49 does not. Marcias -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040715/114db60c/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: 1Brick7-2.jpg Type: image/jpeg Size: 17345 bytes Desc: not available Url : ... [GiDlist] Label Numberying in the GID 7.49
Send by: Enrique Escolano You used the same mesh and results file for both pictures?? What's the process to create this two images? Have you used exactly the same procedure with GiD7.2 and GiD7.4.9b? Enrique ----- Original Message ----- From: Marcias Martinez To: Enrique Escolano Cc: gidlist at gatxan.cimne.upc.es Sent: Thursday, July 15, 2004 3:07 AM Subject: [GiDlist] Label Numberying in the GID 7.49 Hi Enrique, I think the label numberying in GID beta 7.49 is not working correctly. Here is two JPG files, one done in 7.2 and another in 7.49 (the same result file). The label attached to each node is totaly different. The 7.2 label numberying makes sense the 7.49 does not. Marcias -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] floating point precision
Send by: Rama Karve Hi, I am using Files -> Export -> Text Data Report to get the geometry information. How do I change/increase the floating point precision for the coordinates and other numerical data that are written to the file? Thanks, Rama Karve --------------------------------- Do you Yahoo!? Take Yahoo! Mail with you! Get it on your mobile phone. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040715/fd6484cd/attachment.htm ... [GiDlist] floating point precision
Send by: Ramon Ribó
Hello,
You will have to use a .bas file to obtain arbitrary precission.
Check:
Help->customization help
for details.
Regards,
--
Compass Ing. y Sistemas Dr. Ramon Ribo
http://www.compassis.com <http://www.compassis.com/>
ramsan at compassis.com
c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82
08034 Barcelona, Spain fax. +34 93 204 19 09
-----Mensaje original-----
De: gidlist-admin at gatxan.cimne.upc.es...
[GiDlist] Re: GiDlist digest, Vol 1 #666 - 4 msgs
Send by: Marcias Martinez Hi Enrique, Attached you will find the following files: mesh.res mesh.msh and calc.txt (this is just for your information). If you open the post-processing section and do a right click and then label all, you will see that the numbering presented by the element in 7.49 is not correct. If you do it in 7.2 you do get the correct numberying. Let me know if you can duplicate the problem. Take care, Marcias Martinez FWD 260032 Sip Phone: 1-747-669-4145 ----- Original Message ----- From: <gidlist-request at gatxan.cimne.upc.es> To: <gidlist at gatxan.cimne.upc.es... [GiDlist] Re: GiDlist digest, Vol 1 #666 - 4 msgs
Send by: Enrique Escolano I obtain the same labels using GiD7.2 and GiD7.4.9b. Your bad image (of your previous e-mail) show two overlapped labels: the correct node number, and another number. I unknow what's the cause. Maybe it's a problem related with the graphic card. Try to deactivate from Windows the graphic card acceleration. Enrique Escolano ----- Original Message ----- From: "Marcias Martinez" <martinez at aei.ca> To: <gidlist at gatxan.cimne.upc.es> Cc: "Enrique Escolano" <escolano at cimne.upc.es... [GiDlist] Re: draw some materials?
Send by: Enrique Escolano It not exists any intrinsic command to draw a group of materials at same time, only is possible to draw one by one or all.
Now it's not possible to do it with tcl.
With the next GiD 7.4.10b beta version will be possible, by using a new GiD-tcl command : drawopengl drawentity, to draw a GiD entity
This is a sample to draw the surface number 1 filled with blue color.
Instead to draw this surface number 1, can use some info command to select the surfaces with the desired material.
proc InitDrawSurface { } {
set ::MyPriv [drawopengl register drawsurface1]
GiD_Process redraw
}
proc drawsurface1 { } {
#set color=blue (rgb=0 0 1) and draw filled the surface number 1
drawopengl draw -color { 0.0 0.0 1.0 }
drawopengl drawentity -mode filled surface 1
}
proc EndDrawSurface { } {
drawopengl unregister $::MyPriv
}
InitDrawSurface
Enrique Escolano
-----Mensaje original-----
De: Jose Antonio Fernandez [mailto:...
[GiDlist] Re: .bas
Send by: Zhihong Liu Dear all,
I have a question on how to write a command in the template file (.bas) for listing the tabular data.
Thanks.
-- Zhihong Liu
Attached:
**********************************************************************************
prb file
**********************************************************************************
PROBLEM DATA
...
QUESTION: Schedule(day,time_1,time_2,time_3,time_4,time_5,time_6)
VALUE: #N# 7 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00
...
END PROBLEM DATA
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040722/736578e8/attachment.htm...
[GiDlist] Re: .bas
Send by: Enrique Escolano *.prb file ... QUESTION: Schedule(day,time_1,time_2,time_3,time_4,time_5,time_6) VALUE: #N# 7 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 ... This is a sample of *.bas file (untested, it can contain some small bug) *set var line=0 *for(i=1;i<=GenData(Schedule,int);i=i+1) *GenData(Schedule,*i,real)* *matprop(Table_Interpolation_Values,*i,real) * *set var line=line+1 *if(line==7) *endif *endif Regards Enrique Escolano ----- Original Message ----- From: Zhihong Liu To: gidlist at gatxan.cimne.upc.es Sent: Thursday, July 22, 2004 7:48 AM Subject: [GiDlist] Re: .bas Dear all, I have a question on how to write a command in the template file (.bas) for listing the tabular data. Thanks. -- Zhihong Liu Attached: ********************************************************************************** prb file ********************************************************************************** PROBLEM DATA ... QUESTION: Schedule(day,time_1,time_2,time_3,time_4,time_5,time_6) VALUE: #N# 7 1 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 00:00:00 ... END PROBLEM DATA -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Version 7.4.9
Send by: Esneyder Hola Enrique Ahora trabajo con la version 7.4.2b pero quiero actualizar la version (academica ) a 7.4.9 o 7.4.10 si es posible, sinembargo, no veo acceso estas versiones en la págine de GiD, te agradezco decirme de donde la puedo bajar. EsneyderM. [GiDlist] Version 7.4.9
Send by: Enrique Escolano The last beta versions are inside the "Download - GiD beta versions" section: http://www.gidhome.com/download/do07.subst Enrique Escolano ----- Original Message ----- From: "Esneyder" <esneyder.montoya at utoronto.ca> To: <gidlist at gatxan.cimne.upc.es> Sent: Thursday, July 22, 2004 2:16 PM Subject: [GiDlist] Version 7.4.9 > Hola Enrique > > Ahora trabajo con la version 7.4.2b pero quiero actualizar la version ... [GiDlist] Problems to transfer names with blank spaces
Send by: Fernanda Caffaratti Dear all,
I have a problem to transfer directories with blank spaces
from a procedure written in tcl.
I tried to enclose the name in quote: "$dir" , but appears a Gid internal error:
GID internal error (l2036): couldn't open ""C:/Archivos de programa/GiD/GiD7.1/problemtypes/Pruebas.gid/HARVBULL.GIF"": no such file or directory
For example, I wrote:
proc InitGIDProject { dir } {
#where dir => C:/Archivos de #programa/GiD/GiD7.1/problemtypes/Pruebas.gid
Ayuda "$dir"
}
proc Ayuda { dir } {
set w .aviso
toplevel $w
wm title $w "AYUDA"
#wm geometry $w 340x230+$x+$y
focus $w
frame $w.top
frame $w.mensaje
label $w.mensaje.titulo -text "Seleccione el botón:" -font -*-arial-bold-r-normal-*-12-*-*-*-*-*-*-*
frame $w.contbot -relief ridge -bd 3
frame $w.contbot.linea
frame $w.contbot.linea1
frame $w.contbot.linea2
frame $w.contbot.linea3
frame $w.botones -relief sunken -bd 2
set archi [file join $dir HARVBULL.GIF]
set img [image create photo -file $archi]
.
.
.
I also tried to use ""$dir"", but don't work.
The dir is here C:/Archivos de programa/GiD/GiD7.1/problemtypes/Pruebas.gid, with a
blank space between "Archivos" and "de ...".
Could you give me a good way to solve this problem?
Thank you for your response.
Fernanda
---------------------------------
¿Te cansaste de borrar mensajes para mantener tu cuenta activa?
Probá Correo Yahoo!: 100MB gratis, protección antivirus y contra el correo basura
¡Tenelo ya!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] Problems to transfer names with blank spaces
Send by: Ramon Ribó Hello, This command: Ayuda "$dir" should be substituted by: Ayuda $dir The rest looks correct. Are you sure that the image is there? Regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com <http://www.compassis.com/> ramsan at compassis.com c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82 08034 Barcelona, Spain fax. +34 93 204 19 09 -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es... [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results
Send by: Rafael Doig Dear GiD support team, I would be very thankful for some help to following problem: We are developing a 3D eulerian FEM-code for plasticity problems. As you know, in an eulerian formulation the mesh keeps fixed and the material move trought the mesh. In the picture (please see attachment) we see the material in red color and the void in blue color after deformation. The material builds a volume within the fixed mesh volumen. My wish is just to be able to show only the material and not the void (blue color) part of the mesh. Is it possible? Thanks a lot in advance Best regards Rafael Doig -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results
Send by: Miguel A. Pasenau de Riera What you can do is to set the Minimum limit of the contour fill to 0.5, and tell gid to draw everything below this minimum value as transparent. to achieve this: 1. options->ContourFill->Min.options->set value set it to 0.5 (you can also use the icon 'usermin' that appears on the postprocess icon bar) 2. options->ContourFill->Min.options->Out Min Color->Transparent and that's it! hope it helps miguel _____ De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es... [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results
Send by: Rafael Doig A big thanks Miguel for your good and quick answer. It helped a lot. However, as you can see in the new picture (see attachment) only the side-surfaces are drawn. What about the surface IN the mesh volume? Means, I would like to have the all the surfaces that close the volume of material. I thank you again in advance for your kindly help Regards, Rafael ----- Original Message ----- From: Miguel A. Pasenau de Riera To: gidlist at gatxan.cimne.upc.es Sent: Thursday, July 29, 2004 10:54 PM Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results What you can do is to set the Minimum limit of the contour fill to 0.5, and tell gid to draw everything below this minimum value as transparent. to achieve this: 1. options->ContourFill->Min.options->set value set it to 0.5 (you can also use the icon 'usermin' that appears on the postprocess icon bar) 2. options->ContourFill->Min.options->Out Min Color->Transparent and that's it! hope it helps miguel ---------------------------------------------------------------------------- De: ... [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results 2
Send by: Miguel A. Pasenau de Riera i send you enclosed a picture as example. miguel _____ De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig Enviado el: viernes, 30 de julio de 2004 1:53 Para: gidlist at gatxan.cimne.upc.es Asunto: Re: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results A big thanks Miguel for your good and quick answer. It helped a lot. However, as you can see in the new picture (see attachment) only the side-surfaces are drawn. What about the surface IN the mesh volume? Means, I would like to have the all the surfaces that close the volume of material. I thank you again in advance for your kindly help Regards, Rafael ----- Original Message ----- From: Miguel A. <mailto:... [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results
Send by: Miguel A. Pasenau de Riera Hello,
you have to combine several results view types: Contour Fill (to drawn the
volume with material) and Iso surfaces (to create the inner surface of the
volume).
you have to:
1. in the window 'Windows->Several results', under the label 'Results view:'
click 'one over another'.
2. the do a Contour fill with your results and options
3. then do a iso surface with your exact value:
a. View Results->Iso Surface->Exact->(your result)
b. it will ask you 'how manu isosurfaces?' you'll need only one.
c. the enter the exact value of your material: 0.5,
d. inside use 'Options->Iso surfaces->Display Style' and 'Options->Iso
surfaces->Render' to select your desired visualization for the isosurface.
and that's it!
enjoy it,
best regards
miguel
_____
De: ...
[GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results
Send by: Rafael Doig Hello Miguel, thank you again for your support. It works however only with displacement's iso-surfaces but not with gauss points centred data. Maybe because displacements are node values? You know, the filling rate is a scalar value attached to the gauss point (only one) I send you the result file. I will appreciate any help more. Thank you in advance. Rafael ----- Original Message ----- From: Miguel A. Pasenau de Riera To: gidlist at gatxan.cimne.upc.es Sent: Friday, July 30, 2004 9:16 PM Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results Hello, you have to combine several results view types: Contour Fill (to drawn the volume with material) and Iso surfaces (to create the inner surface of the volume). you have to: 1. in the window 'Windows->Several results', under the label 'Results view:' click 'one over another'. 2. the do a Contour fill with your results and options 3. then do a iso surface with your exact value: a. View Results->Iso Surface->Exact->(your result) b. it will ask you 'how manu isosurfaces?' you'll need only one. c. the enter the exact value of your material: 0.5, d. inside use 'Options->Iso surfaces->Display Style' and 'Options->Iso surfaces->Render' to select your desired visualization for the isosurface. and that's it! enjoy it, best regards miguel ---------------------------------------------------------------------------- De: ... [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results
Send by: Miguel A. Pasenau de Riera yes you're right, isosurfaces only works for nodal values. the representation for gauss points result is under development. i'll try to finish it for the next beta. miguel _____ De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Rafael Doig Enviado el: viernes, 06 de agosto de 2004 3:56 Para: gidlist at gatxan.cimne.upc.es Asunto: Re: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results Hello Miguel, thank you again for your support. It works however only with displacement's iso-surfaces but not with gauss points centred data. Maybe because displacements are node values? You know, the filling rate is a scalar value attached to the gauss point (only one) I send you the result file. I will appreciate any help more. Thank you in advance. Rafael ----- Original Message ----- From: Miguel A. <mailto:... [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results
Send by: Rafael Doig Thank you Miguel, at least I know where the obstacle is. I will thank you a lot, if I can get a notification when the next beta with this capability is finished. Have a nice day Rafael ----- Original Message ----- From: Miguel A. Pasenau de Riera To: gidlist at gatxan.cimne.upc.es Sent: Friday, August 06, 2004 8:32 PM Subject: RE: [GiDlist] GiD 7.4.6 - Showing only the material part of an eulerian-code results yes you're right, isosurfaces only works for nodal values. the representation for gauss points result is under development. i'll try to finish it for the next beta. miguel ---------------------------------------------------------------------------- De: ... [GiDlist] wants to know how to add more new menus between<Meshing> and <Calculate>
Send by: De silva mahinda An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040730/e5977f66/attachment.htm [GiDlist] wants to know how to add more new menus between<Meshing> and <Calculate>
Send by: Enrique Escolano Try this code:
proc MytTestCreateMenu {new_menu_name1} {
global MenuNames MenuEntries MenuCommands MenuAcceler
set last [llength $MenuNames]
set pos1 [expr $last-1]
set pos2 [expr $last-2]
set pos3 [expr $last-3]
set MenuNames [linsert $MenuNames $pos2 "$new_menu_name1"]
set MenuEntries($last) $MenuEntries($pos1)
set MenuCommands($last) $MenuCommands($pos1)
set MenuAcceler($last) $MenuAcceler($pos1)
set MenuEntries($pos1) $MenuEntries($pos2)
set MenuCommands($pos1) $MenuCommands($pos2)
set MenuAcceler($pos1) $MenuAcceler($pos2)
set MenuEntries($pos2) ""
set MenuCommands($pos2) ""
set MenuAcceler($pos2) ""
}
MytTestCreateMenu Menu1
MytTestCreateMenu Menu2
InsertMenuOption Menu1 test 0 {WarnWinText test} PRE replace
InsertMenuOption Menu2 hello 0 {WarnWinText hello} PRE replace
UpdateMenus
Enrique Escolano
----- Original Message -----
From: De silva mahinda
To: ...
[GiDlist] .bas problem
Send by: Esneyder Montoya Warning: This message has had one or more attachments removed. Warning: Please read the "VirusWarning.txt" attachment(s) for more information. Dear GiD Team I have a problem when trying to run my project.gid files, a material was set like: BOOK: uniaxialMat NUMBER: 11 MATERIAL: uniElastic QUESTION:consider_uniElastic#CB#(0,1) VALUE:0 QUESTION: uni_E: VALUE:30000 QUESTION: uni_damping: VALUE:0.0 END MATERIAL ..... and in the project.bas file, the material is called as: *loop materials *If(MatProp(consider_uniElastic,Int)!=0)* uniaxialMaterial Elastic *MatNum *MatProp(uni_E) *MatProp(uni_damping) *endif *End materials .... when trying to write the calculation file, I am having the following error: Error in base file C:... at line number ...: word: 'uni_E' doesn't exist In this case I am not selecting this particular material within the problem am solving, so the *.bas file must actually pass over this isntruction and do nothing, which is not the case. Could you give me a hint on what might be the problem. I am attaching the project files -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: EMOpenSEEs.bas Url: ... [GiDlist] .bas problem
Send by: Enrique Escolano Comments about your bas code: *loop materials *If(MatProp(consider_uniElastic,Int)!=0)* uniaxialMaterial Elastic *MatNum *MatProp(uni_E) *MatProp(uni_damping) *endif *End materials 1 ) * seems incorrect at the end of a *if command 2) loop materials make a loop over all materials assigned to entities. In order to use *If(MatProp(consider_uniElastic,Int)!=0) must be sure that all defined materials have a field named "consider_uniElastic", and in your case other materials don't have this field !!! You can create a field (can be hidden) defined for all materials to identify before use other fields, for example QUESTION: TypeId VALUE: elastic STATE: Hidden Are you are sure that the field "uni_E" is really defined for all loops ?? Note: Some of your attached files are removed by the mail server antivirus, please for further messages send a zip file with single extension. Regards Enrique Escolano ----- Original Message ----- From: "Esneyder Montoya" <... [GiDlist] Problems with lable select res
Send by: Andrea Calaon Warning: This message has had one or more attachments removed.
Warning: Please read the "VirusWarning.txt" attachment(s) for more information.
Hi everyone,
I'm using GiD 7.4.9 b in Windows for post processing files of 3D elasticity and the
command:
label Select resultonview (using the mouse)
seems not to work. My result is a gauss points one.
To have a quick look at the result values I have to zoom so that the displayed part
contains only few elements and than use
label resultonview
.
I had the same problem with previous versions of GiD but it seemed to be rotation
dependent: the command worked if the labels were mostly outside the model surface.
With this version the command never works.
I append a zip file with an example called "Slab_4.gid".
Thanks for any help.
-------------- next part --------------
The following section of this message contains a file attachment
prepared for transmission using the Internet MIME message format.
If you are using Pegasus Mail, or any another MIME-compliant system,
you should be able to save it or view it from within your mailer.
If you cannot, please ask your system administrator for assistance.
---- File information -----------
File: Slab_4.gid.rar
Date: 13 Aug 2004, 10:37
Size: 91637 bytes.
Type: Unknown
-------------- next part --------------
This is a message from the MailScanner E-Mail Virus Protection Service
----------------------------------------------------------------------
The original e-mail attachment "Slab_4.gid.rar"
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 Aug 13 12:17:13 2004 the virus scanner said:
Attempt to hide real filename extension in Slab_4.gid.rar
Note to Help Desk: Look on the MailScanner in /var/spool/mailscanner/quarantine (message i7DAGf8H021267).
--
Postmaster
...
[GiDlist] Problems with lable select res
Send by: Andrea Calaon Hi everyone, I'm using GiD 7.4.9 b in Windows for post processing files of 3D elasticity and the command: label Select resultonview (using the mouse) seems not to work. My result is a gauss points one. To have a quick look at the result values I have to zoom so that the displayed part contains only few elements and than use label resultonview . I had the same problem with previous versions of GiD but it seemed to be rotation dependent: the command worked if the labels were mostly outside the model surface. With this version the command never works. I append a zip file with an example called "Slab_4.gid". Thanks for any help. Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Problems with lable select res
Send by: Miguel A. Pasenau de Riera Hi, i did not receive the file. Perhaps is because of the double extension that the antivirus mail parses deletes it. Pleas try with something like slab_4_gid.rar thanks miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Andrea Calaon Enviado el: viernes, 13 de agosto de 2004 11:51 Para: gidlist at gatxan.cimne.upc.es Asunto: [GiDlist] Problems with lable select res Hi everyone, I'm using GiD 7.4.9 b in Windows for post processing files of 3D elasticity and the command: label Select resultonview (using the mouse) seems not to work. My result is a gauss points one. To have a quick look at the result values I have to zoom so that the displayed part contains only few elements and than use label resultonview . I had the same problem with previous versions of GiD but it seemed to be rotation dependent: the command worked if the labels were mostly outside the model surface. With this version the command never works. I append a zip file with an example called "Slab_4.gid". Thanks for any help. Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Problems with lable select res
Send by: Miguel A. Pasenau de Riera I do not understand very well the problem. I displayed, for instance, a controu fill of Stress#T and then i've done 'label->select->results' and then selected some gauss points and then it displayed its results values: LabelGPResults.gif But if the problem lies in the size of the font used to display de labels, in the 'Utilities->preferences' window there is a 'font' panel, from where you can select the type and size of the font used to draw the labels, under the text 'Label/Dimensions Font'. Hope it helps, miguel -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es... [GiDlist] Calculate Remote
Send by: Rafael Doig Dear Miguel, I try now following working configuration. Client: Windows XP -GiD 7.4 (pre- and post) Server: Redhat Linux -Fortran90 (solver) In GiD, I notice, we can use "calculate remote". I try using all the required information, but it doesn't work. My questions: 1. What kind of connection do you use? must I chage some settings on the server-side? 2. Where must I put the name (incl. path) of the program on the linux machine? The data required is only: Remote server, Group, User and Password. How do you know where the FEM-program is? Another question is, if I "mount" or map a network directory in Windows XP, can I open in GiD the mapped files, so that I can let model- and result-files on the server? If yes, please inform me, then I will start to install Samba on linux for this purpose. Thanks a lot for your help!! Rafael ... [GiDlist] Calculate Remote
Send by: Enrique Escolano The 'calculate remote' option require another CIMNE's program, installed on the server machine: ProcServer (and the problemtype off course) GiD directly comunicates (using TCP/IP) with ProcServer to send and retrieve the calculation information. Note: At this moment procserver is not available for public download. I think that GiD can access without problems to a mapped network directory in Windows XP, Regards Enrique Escolano ----- Original Message ----- From: "Rafael Doig" <rafadoig at hiroshima-u.ac.jp> To: <gidlist at gatxan.cimne.upc.es... [GiDlist] email attachments
Send by: Mark Smith Hi all certain innocent email attachments are being blocked by the gidlist server & at my end also (outlook security) eg *.mat *.bas files, can I suggest that attachments are zipped up & then change the extension to say .gidzip before attaching to the email, then we can rename to .zip & expand if we want to see the files. just a thought mark --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.726 / Virus Database: 481 - Release Date: 22/07/2004 The information contained in this e-mail message (and any attachment transmitted herewith) is privileged and confidential and is intended for the exclusive use of the addressee(s). If you are not an addressee, any disclosure, reproduction, distribution or other dissemination or use of this communication is strictly prohibited. If you have received this communication in error, please contact us immediately so that we can correct the error. ... [GiDlist] New extension for the file and rar compression
Send by: Andrea Calaon Hi,
I append the file as suggested by Miguel:
Slab_4_gid.rar
(is now a rar compression).
See if it works.
Regards
Andrea
-------------- next part --------------
The following section of this message contains a file attachment
prepared for transmission using the Internet MIME message format.
If you are using Pegasus Mail, or any another MIME-compliant system,
you should be able to save it or view it from within your mailer.
If you cannot, please ask your system administrator for assistance.
---- File information -----------
File: Slab_4_gid.rar
Date: 13 Aug 2004, 12:24
Size: 91637 bytes.
Type: Unknown
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Slab_4_gid.rar
Type: application/octet-stream
Size: 91637 bytes
Desc: not available
Url : ...
[GiDlist] Showing graph labels in ver 7.4.9b
Send by: Billy Fälth Hello When I plot more than one graph in version 7.4.9b there is problem with getting graphs labels. If I have two or more graphs, it is only possible to select points to show their labels in the first graph drawn. The other graphs are ignored if the view_label_select command is used. Regards /BF Billy Fälth Clay Technology AB Ideon Research Center S 223 70 Lund, SWEDEN Tel +46 46 286 25 81 Fax +46 46 13 42 30 www.claytech.se <http://www.claytech.se/> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040816/5b5a6b3d/attachment.htm... [GiDlist] Showing graph labels in ver 7.4.9b
Send by: Enrique Escolano Thanks for this bug report. In other hand, you can show all graph point results with: Label->All in->Results Regards Enrique Escolano ----- Original Message ----- From: Billy Fälth To: gidlist at gatxan.cimne.upc.es Sent: Monday, August 16, 2004 11:41 AM Subject: [GiDlist] Showing graph labels in ver 7.4.9b Hello When I plot more than one graph in version 7.4.9b there is problem with getting graphs labels. If I have two or more graphs, it is only possible to select points to show their labels in the first graph drawn. The other graphs are ignored if the view_label_select - command is used. Regards /BF Billy Fälth Clay Technology AB Ideon Research Center S 223 70 Lund, SWEDEN Tel +46 46 286 25 81 Fax +46 46 13 42 30 www.claytech.se -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Forces results for structural analysis using Ram- Series
Send by: Fernanda Caffaratti Hola a todos,
Mi consulta es la siguiente:
Entre los resultados generados por Tdyn, se encuentra el archivo "ProblemName. flavia. ram. res", y consultando en el manual de referencia de Tdyn, indica que este archivo contiene las fuerzas resultantes para un análisis estructural usando Ram Series.
Mi duda es : las tres componentes de las fuerzas de cada nodo que aparecen en el mencionado archivo, son en función de los ejes globales establecidos al momento de generar la geometría o en función de las normales (ejes locales) a las superficies de la geometría?
Espero que puedan ayudarme
Muchas Gracias.
Fernanda
100mb gratis, Antivirus y Antispam
Correo Yahoo!, el mejor correo web del mundo
¡Tenelo ya!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] Forces results for structural analysis using Ram- Series
Send by: Rafael Doig Hola Fernanda, ojala te pueda ayudar mi comentario. No conozco Tdyn, pero en tu caso yo sumaria todas la fuerzas resultantes, en x,y,z. La suma tendria que dar cero, y eso significaria que estan relacionadas al systema global de coordinadas. En realidad no veo la razon porque Tdyn tendria que dar fuerzas locales. Si hay la razon, por favor informame. Saludos Rafael ----- Original Message ----- From: Fernanda Caffaratti To: gidlist at gatxan.cimne.upc.es Sent: Monday, August 23, 2004 9:14 AM Subject: [GiDlist] Forces results for structural analysis using Ram- Series Hola a todos, Mi consulta es la siguiente: Entre los resultados generados por Tdyn, se encuentra el archivo "ProblemName. flavia. ram. res", y consultando en el manual de referencia de Tdyn, indica que este archivo contiene las fuerzas resultantes para un análisis estructural usando Ram Series. Mi duda es : las tres componentes de las fuerzas de cada nodo que aparecen en el mencionado archivo, son en función de los ejes globales establecidos al momento de generar la geometría o en función de las normales (ejes locales) a las superficies de la geometría? Espero que puedan ayudarme Muchas Gracias. Fernanda 100mb gratis, Antivirus y Antispam Correo Yahoo!, el mejor correo web del mundo ¡Tenelo ya! -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] wants to know, how to open help files under help menu(during pre and post proc)
Send by: De silva mahinda An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040823/1947ab25/attachment.htm [GiDlist] wants to know, how to open help files under help menu(during pre and post proc)
Send by: Enrique Escolano GiD includes a HTML viewer to show help files. Can save your Word doc file in this html format. Also your problemtype can change the default GiD menus to open your own help. Read GiD help about Tcl-Tk extension-Managing menus, and Tcl-Tk extension-Html support. Regards Enrique Escolano ----- Original Message ----- From: De silva mahinda To: gidlist at gatxan.cimne.upc.es Sent: Monday, August 23, 2004 8:34 AM Subject: [GiDlist] wants to know, how to open help files under help menu(during pre and post proc) Dear Sir, I have been using GiD for many months. And I have used it as a pre and post processor. So now I am trying to add some more advance feathers to our program. So I would like to know how to add a HELP file to the user interface. And how can I open external files from the user interface. Let say, I have a Help file. Say, Help.doc or some other format. I want to open it under the GiD help menu. And let say, I have a results file. Say, results.txt. I want to open that file under menu I have created lat say XFINAS, So please tell me know, how can I manage it Hope to hearing from you soon. De silva. ------------------------------------------------------------------------------ Add photos to your e-mail with MSN 8. Get 2 months FREE*. _______________________________________________ GiDlist mailing list ... [GiDlist] Re: Forces results for structural analysis using Ram- Series
Send by: Fernanda Caffaratti Hola a todos Rafael, te cuento que sumé todas las componentes de fuerzas en x,y,z, por cada nodo, como me indicaste. La suma , para cada nodo, es diferente de cero, por lo que las fuerzas no estarían relacionadas al systema global de coordenadas. En mi caso particular, tengo una geometría a la cual aplico un fluido (viento) en la dirección del eje global X (perpendicular al plano yz). Las "presiones" en los nodos correspondientes a la superficie en el plano yz, tienen valores positivos, pero la componente x de la fuerza en dichos nodos es negativa. No tiene sentido que la fuerza apunte en sentido contrario a la dirección del fluido. Las normales de las superficies apuntan todas hacia fuera de la geometría. Por eso pienso que las fuerzas calculadas por Tdyn son relativas a las normales y no a los ejes globales. A mi me interesaría obtener las fuerzas en relación a los ejes globales, pero no sé como puedo hacer esto. Espero que puedan ayudarme. Muchas gracias Saludos Correo Yahoo! - 6 MB, tecnología antispam ¡gratis! Suscribite ya ... [GiDlist] Resutl visualisation problem
Send by: Andrea Calaon Hi, last week I was reporting about a problem in visualising results in GiD post processing. The problem continues even after trying to change the display font. It is probably connected with the graphic card I have: NVidia Riva TNT2 Model 64. I'll try next week to de-select hardware acceleration, when the administrator will be back. Thanks for the suggestion you all gave me. Andrea [GiDlist] Color palette
Send by: Vitaly Rodriguez Esquerre I`d like to know how can I customize the colors assigned to the materials when data/material/draw all is selected. Thank you Vitaly __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail [GiDlist] Color palette
Send by: Enrique Escolano At this moment it's not possible to customize the material colors palette. Enrique Escolano ----- Original Message ----- From: "Vitaly Rodriguez Esquerre" <vitalyre at rocketmail.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Friday, August 27, 2004 10:17 AM Subject: [GiDlist] Color palette > I`d like to know how can I customize the colors > assigned to the materials when data/material/draw all > is selected. > > Thank you >... [GiDlist] need to know system info while it run the program( related to **.bat file)
Send by: De silva mahinda An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040830/dede93f0/attachment.htm [GiDlist] need to know system info while it run the program( related to **.bat file)
Send by: Enrique Escolano You can access inside the bat file to DOS "environment variables" for example %windir% return the path to the windows directory (e.g. "C:WINNT") and %HOME% returns "C:" sample uses: ECHO %windir% > sample.txt ECHO %HOME% >> sample.txt copy %2\%1-1.dat %windir%datin2.dat the first and second line dump the variable values to the file sample.txt the third line copy a file to another file inside C:WINNTdatin2.dat Note: I don't know if this reated system variables are always defined, check the Windows documentation about this. Regards Enrique Escolano ----- Original Message ----- From: De silva mahinda To: gidlist at gatxan.cimne.upc.es... [GiDlist] crashing of GiD with Windows 2000
Send by: Johannes Ackva Dear Sirs, on my PC with Windows 2000, GiD crashes when I try to list entities. For example, beeing in the mesh view, I make: Utilities, List, nodes. Then I pull the mouse, pressing the left mouse butten. In the moment when I release the mouse butten, Gid crashes. Has anyone experienced the same problem and can anyone give me a hint what to do or to change in order to avoid this behaviour? Please help me. Best regards, Johannes Ackva ______________________________________________________________________ Ingenieurbüro für Mechanik Dr.-Ing. Johannes Ackva Markgrafenstr. 21 D 91717 Wassertrüdingen... [GiDlist] crashing of GiD with Windows 2000
Send by: Johannes Ackva Dear Sirs, I want to add some more information about the crashing of Gid on my Win2000, SP5, PC: - Version is GiD 7.4.3b - my computer Vendor investigated my PC. He excluded hardware problems and problems with my grafical board. - Moreover I tried before the advices given on www.gidhome.support (deactivating the software acceleration, less colours and so on). No success. - After all this I suppose an error inside the GiD-Code. How could give my a hint or advice to my problem: You can answer also in spanish or french (which I am able to read). Thank You. Best regards, Johannes Ackva [GiDlist] crashing of GiD with Windows 2000
Send by: Enrique Escolano I also work with Win2000, but on my computer GiD 7.4.3b does'nt crash when list entities. Typically this type of problems are always because the graphical acceleration. I don't know the cause on your PC. Try to download and install the last beta version 7.4.9b ftp://gid.cimne.upc.es/pub/gid_adds/Windows/GiD7.4.9b-win.exe Enrique Escolano ----- Original Message ----- From: "Johannes Ackva" <ackva.johannes at vdi.de> Cc: <gidlist at gatxan.cimne.upc.es... [GiDlist] Support on Drawing in GID
Send by: Marcias Martinez Hi Guys, I am looking at creating a composite structure in GID and I am not sure how to mesh it with a structured 20 node brick mesh since I cant seem to get the structure correctly modeled. What I am trying to do is a cylindrical fiber inside a cube. So that the cylinder can have one material property and the cube that surrounds it will have nother type of material property. Any ideas on how I could do this? Thanks Marcias Email: martinez at aei.ca FWD: 260032 SIP 1-747-6694145 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040904/e9df2122/attachment.htm... [GiDlist] Support on Drawing in GID
Send by: Enrique Escolano Can create all top surfaces with 4-sides, and create the 6-sided volumes by extrusion. See this picture: Enrique Escolano ----- Original Message ----- From: Marcias Martinez To: Enrique Escolano Cc: gidlist at gatxan.cimne.upc.es Sent: Saturday, September 04, 2004 6:33 PM Subject: [GiDlist] Support on Drawing in GID Hi Guys, I am looking at creating a composite structure in GID and I am not sure how to mesh it with a structured 20 node brick mesh since I cant seem to get the structure correctly modeled. What I am trying to do is a cylindrical fiber inside a cube. So that the cylinder can have one material property and the cube that surrounds it will have nother type of material property. Any ideas on how I could do this? Thanks Marcias Email: ... [GiDlist] Problems with move point and arcline
Send by: HRYB Damian Emmanuel CINI Hi gid list, I draw an arcline defined by 3 points, then I need to modify the arcline shape and dimension using move point but I just have access to 2 arc points. If I move that 2 points I don't obtain the desired arc. What can I do? Damián [GiDlist] Problems with move point and arcline
Send by: Enrique Escolano Instead to "deform" the previous arc with "move point", you can simply create a new arc and delete the old one. Enrique ----- Original Message ----- From: "HRYB Damian Emmanuel CINI" <SIDHRY at siderca.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Monday, September 06, 2004 7:08 PM Subject: [GiDlist] Problems with move point and arcline > Hi gid list, > I draw an arcline defined by 3 points, then I need to modify the arcline > shape and dimension using move point but I just have access to 2 arc ... [GiDlist] crashing of GiD with Windows 2000
Send by: Mark Smith I also work with win2000 but find a problem when I have the display properties set to 256 color or high color (16 bit), no problems when set to true color (32 bit). regards mark -----Original Message----- From: Enrique Escolano [mailto:escolano at cimne.upc.es] Sent: 06 September 2004 18:49 To: gidlist at gatxan.cimne.upc.es Subject: Re: [GiDlist] crashing of GiD with Windows 2000 I also work with Win2000, but on my computer GiD 7.4.3b does'nt crash when list entities. Typically this type of problems are always because the graphical acceleration. I don't know the cause on your PC. Try to download and install the last beta version 7.4.9b ... [GiDlist] RE: Problems with move point and arcline
Send by: HRYB Damian Emmanuel CINI But, if the arc define two surfaces and these surfaces define four volume, I'd have to create all entities again. Is there another option?? Damián ----- Original Message ----- From: "Enrique Escolano" <escolano at cimne.upc.es> To: <gidlist at gatxan.cimne.upc.es> Subject: Re: [GiDlist] Problems with move point and arcline Date: Tue, 7 Sep 2004 14:57:15 +0200 Reply-To: gidlist at gid.cimne.upc.es... [GiDlist] RE: Problems with move point and arcline
Send by: Enrique Escolano It does'nt exists other options. In other hand, the move point option only must be used with "small" displacements, because it's not possible to deform the dependent lines and surfaces in a compatible mode. Note: you can try a "dark" trick to change your arcline for another similar curve: Create the new curve with an identifier number smaller than the old arcline, and collapse this two curves with the appropiate tolerance, then the curve with higher numeration is changed by the other. For example, before to create the new arc, you can force his identifier number to be 1 geometry create arc number 1 ... Then set the preference Import tolerance value to be a little big that the maximum distance between this curves and collapse them (menu Utilities->Collapse->Lines), and restore the Import tolerance value. Regards Enrique ----- Original Message ----- From: "HRYB Damian Emmanuel CINI" <... [GiDlist] Problem with the Collapse Model feature
Send by: Philippe Bouchilloux Hello: Recently, I have encountered a problem that, I think, is linked to the Collapse Model feature in GiD. The attached file is in Parasolid format, and was generated from SolidWorks. If you import it in GiD (I tried 7.2 and 7.4.9b, with nicer results in 7.4.9b), it seems to generate a correct geometry, which essentially is a square plate. The SolidWorks model was created with 8 duplicated surfaces (the surfaces that form the first central ring in the plate). After import, I use the Collapse Model feature to remove these surfaces. I have to manually change the import tolerance, because the default value is too small, which is surprising (this is the first time I have this situation). Additionally, this behavior is unchanged even if I scale up the geometry (using Utilities | Move | Scale). Once the 8 surfaces are removed by the Collapse Model feature, the geometry "looks" fine. However, if you mesh it using the structured mesh generator with quadratic elements, and apply 2 subdivisions everywhere except in the thickness direction where you apply 3 subdivisions, then you will clearly see that the elements being generated are malformed at the level of the first central ring. This leads me to think that the Collapse feature has done something "strange" to the volumes that are attached to that first central ring where the surfaces were removed (maybe topological errors), which causes the mesher to create bad elements. Note that this problem won't happen if you delete all volumes and have GiD regenerate the volumes, or if you do not collapse the model. Maybe the issue is caused by the Parasolid import filter? In this case, can you recommend a version number for that format (SolidWorks can export in several different versions of that format)? Thanks for your inputs. Regards, Philippe -------------- next part -------------- A non-text attachment was scrubbed... Name: water.x_t Type: application/octet-stream Size: 102808 bytes Desc: not available Url : ... [GiDlist] Problem with the Collapse Model feature
Send by: Enrique Escolano It seems that exists a problem to calculate some surface center, and then this surfaces with too different center are not collapsed (it's necessary a very big tolerance). This import problem is not related to the file Parasolid version. Can try to export using another format, as IGES. Regards Enrique Escolano ----- Original Message ----- From: "Philippe Bouchilloux" <pb at magsoft-flux.com> To: "GiDList" <gidlist at gatxan.cimne.upc.es> Cc: "Larry Clayton" <lclayton at edoceramic.com... [GiDlist] Surface definition Points
Send by: Andrea Calaon Hi all, Recently I needed information about the points (end-lines) defining the boundary of surfaces. I tried to access them in Tcl through the command: .central.s info list_entities Surfaces $surfnum getting something like: NURBSURFACE Num: 1 HigherEntity: 1 conditions: 2 material: 5 LAYER: Layer0 Meshing Info: (num=2,NOE=1) Elemtype=3 IsStructured=1 size=0 Meshing=Yes NumLines: 4 Line: 4 Orientation: DIFF1ST Line: 3 Orientation: DIFF1ST Line: 2 Orientation: DIFF1ST Line: 1 Orientation: DIFF1ST Number of Control Points= 2 2 Degree= 1 1 Point 1,1 coords:-0.050000,-0.050000,0.000000 Point 1,2 coords:-0.050000,1.050000,0.000000 Point 2,1 coords:1.050000,-0.050000,0.000000 Point 2,2 coords:1.050000,1.050000,0.000000 Number of knots in U= 4 knot 1 value=0.000000 knot 2 value=0.000000 knot 3 value=1.000000 knot 4 value=1.000000 Number of knots in V= 4 knot 1 value=0.000000 knot 2 value=0.000000 knot 3 value=1.000000 knot 4 value=1.000000 Non rational IsTrimmed: 1 Center: 0.500000 0.500000 0.000000 Normal: 0.000000 0.000000 -1.000000 END NURBSURFACE I noticed that the so called points are not always the end-points of the lines surrounding a surface. Instead some points (normally the majority) are just outside the surface corners. In the example above the real surface is a square: Point 1,1 coords:0.0,0.0,0.0 Point 1,2 coords:0.0,1.0,0.0 Point 2,1 coords:1.0,0.0,0.0 Point 2,2 coords:1.0,1.0,0.0 I know nothing about surface modelling, but would like to ask if it is fine. In any case, what would be the way of knowing the exact location of the points defining the corners (end-lines) of a surface? Thanks for any suggestion Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Surface definition Points
Send by: Enrique Escolano The points "apparently" out of the surface, are because it's a trimmed surface: it's defined by a base surface shape (in this case the planar square), and a closed set of trimming curves. Then only is considerated the surface domain "inside" this curves. Note: you can use Geometry->Edit->Edit nurb surface... to show/edit the control points of this base surface. You need to list the information of the lines of this surface, then get the start/end point number, and list this point to obtain the desired coordinates information. Regards Enrique Escolano ----- Original Message ----- From: "Andrea Calaon" <andrea at beasy.com... [GiDlist] Re: Surface definition Points
Send by: Andrea Calaon Thanks Enrique! I'll loop over the lines end extract the start/end points. Regards On 16 Sep 2004 at 19:35, Enrique Escolano wrote: > The points "apparently" out of the surface, are because it's a trimmed > surface: it's defined by a base surface shape (in this case the planar > square), and a closed set of trimming curves. Then only is considerated the > surface domain "inside" this curves. > Note: you can use Geometry->Edit->Edit nurb surface... to show/edit the > control points of this base surface. > > You need to list the information of the lines of this surface, then get the ... [GiDlist] nelem - Behavior changed?
Send by: Philippe Bouchilloux Hello, It looks like nelem in version 7.4.9b does not include linear elements. I could not find any posts about that. I went back to 7.2, in which nelem does include the linear elements. In brief, I have a model with: Num. of linear elements=5 Num. of Triangle elements=832 Num. of Quadrilateral elements=72 Num. of nodes=2020 In version 7.2, nelem = 909. In version 7.4.9b, nelem = 904. Was the behavior of nelem changed on purpose? Philippe [GiDlist] nelem - Behavior changed?
Send by: Enrique Escolano Hello Philippe. *nelem has not changed on purpose. I tried a small test and it worked ok. Can you send your bas file, and and a small sample. (can send directly to me: escolano at cimne.upc.es) Regards Enrique Escolano ----- Original Message ----- From: "Philippe Bouchilloux" <pb at magsoft-flux.com> To: "GiDList" <gidlist at gatxan.cimne.upc.es> Sent: Thursday, September 23, 2004 1:36 AM Subject: {SPAM?} [GiDlist] nelem - Behavior changed? >... [GiDlist] nelem - Behavior changed?
Send by: Philippe Bouchilloux Hello Enrique, After further analysis, this is what I find: the nelem command is modified by the remove command (for instance, remove(Linear) or remove(Triangle)). Unfortunately, even the set elems(All) command does not restore the situation to normal (i.e. nelem returns the total number of elements minus the number of elements removed). I'll send you a test case to your personal email address right away. Philippe >*nelem has not changed on purpose. >I tried a small test and it worked ok. [GiDlist] nelem - Behavior changed?
Send by: Enrique Escolano Hello Philippe. As you related, it exists some problem using *nelem (equivalent to *nelem(all)) after use *remove elems (nelem is not updated) Until this bug is corrected (for the next beta 7.5.0b, maybe available the next week), can use a loop to count the number or elements instead to use *nelem. for example: *set elems(All) *remove elems(Linear) NELEM REMOVE LINEAR = *nelem *set elems(All) NELEM ALL ELEMENTS = *nelem ERROR!! *set var n=0 *loop elems *set var n=operation(n+1) *end elems NELEM ALL ELEMENTS = *n OK!! In other hand, if only want count the number of elements of some type, instead to use *set/add/remove, can add a parameter to *nelem, for example: *nelem(linear) *nelem(triangle) *nelem(quadrilateral) *nelem(all) Regards Enrique Escolano ----- Original Message ----- From: "Philippe Bouchilloux" <... [GiDlist] nelem - Behavior changed?
Send by: Philippe Bouchilloux Thanks Enrique. Philippe At 10/11/2004 02:20 PM, you wrote: >Hello Philippe. >As you related, it exists some problem using *nelem (equivalent to >*nelem(all)) after use *remove elems (nelem is not updated) > >Until this bug is corrected (for the next beta 7.5.0b, maybe available the >next week), can use a loop to count the number or elements instead to use >*nelem. >for example: > >*set elems(All) >*remove elems(Linear) >NELEM REMOVE LINEAR = *nelem >*set elems(All) >NELEM ALL ELEMENTS = *nelem ERROR!! ... [GiDlist] Wants to read system information and show them as in Registry Module in GiD
Send by: De silva mahinda An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040923/f810be4f/attachment.htm [GiDlist] Wants to read system information and show them as in Registry Module in GiD
Send by: Enrique Escolano The functions to get system information are very platform dependent. We can provide directly to you some procedure to manage your problemtype register with the "GiD plus style". Enrique Escolano ----- Original Message ----- From: De silva mahinda To: gidlist at gatxan.cimne.upc.es Sent: Thursday, September 23, 2004 4:03 AM Subject: [GiDlist] Wants to read system information and show them as in Registry Module in GiD Dear Sir, We are using GiD as our pre and post processor. We made security, and its dialog box contain only lable to enter password. But we want to read some more information like in GiD and show them to user. At the moment what we are doing we read them inside main processor XFINAS and save them in another file and ask user to send that file. if you can explain how to show the system information in Security dialog box as in your Registry Module , hope it will be easier for user as they can see it once they use. What we want to read at the moment is hard dive serial number and computer name With regards, De Silva ------------------------------------------------------------------------------ Help STOP spam with the new MSN 8 and get 2 months FREE* _______________________________________________ GiDlist mailing list ... [GiDlist] Assigning different materials to volume and its surfaces
Send by: Antti Vanne Hello all, what's the easiest way to create a volume and assign different materials to the volume and to the surfaces of which the volume is made of? For example, if I create a rectangle surface and extrude it to a cube and further create volume by Geometry -> Create -> Volume -> Search inside it, I'm able to assign different materials to the surfaces and to the volume. But once I create the mesh and draw materials, there's only the material assigned to the volume. So it seems that "lower" entities inherit their material property from the higher entities. Are duplicate surfaces needed? Do the "contact volumes" have anything to do with this problem? I've browsed through the manual, but didn't find chapters addressing this problem. Thanks in advance. -- ... [GiDlist] Assigning different materials to volume and its surfaces
Send by: Enrique Escolano When you generate the mesh of the volume, are only generated volumetric (tetrahedra) elements, and inherit the volume material, but are not generated surface elements (triangles). If you also want this triangles, mush use: Meshing->Mesh criteria->Mesh->Surfaces and select the desired surfaces. Then this triangles will have the material of the source surface. Enrique Escolano ----- Original Message ----- From: "Antti Vanne" <antti.vanne at gmail.com> To: <gidlist at gatxan.cimne.upc.es... [GiDlist] Wants to read system information and show them as in Registry Module in GiD
Send by: De silva mahinda An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040930/9ae87eef/attachment.htm [GiDlist] regarding conectivity
Send by: De silva mahinda An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20040930/86326535/attachment.htm [GiDlist] regarding conectivity
Send by: Enrique Escolano The GiD local numeration of the element faces is: Triangle: 12 23 31 Quadrilateral: 12 23 34 41 Tetrahedra: 123 243 341 421 Hexahedra: 1234 1485 1562 2673 3784 5876For example, in order to identify the second hexahedral face: 1484, you can see that is the only face whith a "4" in the second location, then can use this fact to identify. *if(Localnodes(2,int)==4) FACE 1484 *endif Localnodes return the local node number (1 to 8) of the face Globalnodes return the global node number (the label node number) of the face ElemsConec return the global node number of the element You can also use: *if(GlobalNodes(2,int)==ElemsConec(4,int))^ FACE 1484 *endif But the first form is faster (avoid to call ElemsConec). Regards Enrique Escolano ----- Original Message ----- From: De silva mahinda To: ... [GiDlist] Gidpost
Send by: Benedictus Benny Po Hallo GiD fans and users, can you guys help me : how can I get another source for GiDpost download since it can not be downloaded from GiD homepage..... Thanks --------------------------------- Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage ! Créez votre Yahoo! Mail Le nouveau Yahoo! Messenger est arrivé ! Découvrez toutes les nouveautés pour dialoguer instantanément avec vos amis.Téléchargez GRATUITEMENT ici ! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20041006/d608e568/attachment.htm... [GiDlist] Gidpost
Send by: Enrique Escolano I attach the gidpost library to write GiD postprocess results. The binary compilation included is only for Windows single thread, for other configurations or platforms must be recompiled. Regards Enrique Escolano ----- Original Message ----- From: Benedictus Benny Po To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, October 06, 2004 11:57 AM Subject: [GiDlist] Gidpost Hallo GiD fans and users, can you guys help me : how can I get another source for GiDpost download since it can not be downloaded from GiD homepage..... Thanks ------------------------------------------------------------------------------ Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage ! Créez votre Yahoo! Mail Le nouveau Yahoo! Messenger est arrivé ! Découvrez toutes les nouveautés pour dialoguer instantanément avec vos amis. Téléchargez GRATUITEMENT ici ! -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Gidpost
Send by: Miguel A. Pasenau de Riera Here you have it. miguel _____ De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] En nombre de Benedictus Benny Po Enviado el: miércoles, 06 de octubre de 2004 11:58 Para: gidlist at gatxan.cimne.upc.es Asunto: [GiDlist] Gidpost Hallo GiD fans and users, can you guys help me : how can I get another source for GiDpost download since it can not be downloaded from GiD homepage..... Thanks _____ Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage ! Créez <... [GiDlist] gid7.4.9b vs Redhat 8
Send by: Sebastian Lambeck Hello I got told by your support team that I have to install gid7.4.9b on my Redhat 8 linux machine, because the previous 7.x versions break down when mirroring in postprocess mode. However, when I try to run GiD version 7.4.9b after installation it exits with the message that it needs Tcl 8.3 instead of the installed Tcl version 8.4. Well, I do not think that I should install Tcl 8.3 as well on my computer. So, what to do? Thanks. Sebastian -- GMX ProMail mit bestem Virenschutz http://www.gmx.net/de/go/mail +++ Empfehlung der Redaktion +++ Internet Professionell 10/04 +++... [GiDlist] gid7.4.9b vs Redhat 8
Send by: ronda Have you installed the dynamic (gid7.4.9b-dyn.tar.gz) or static (gid7.4.9b.tar.gz) version? On Friday 08 October 2004 10:37, Sebastian Lambeck wrote: > Hello > > I got told by your support team that I have to install gid7.4.9b on my > Redhat 8 linux machine, because the previous 7.x versions break down when > mirroring in postprocess mode. However, when I try to run GiD version > 7.4.9b after installation it exits with the message that it needs Tcl 8.3 > instead of the installed Tcl version 8.4. Well, I do not think that I > should install Tcl 8.3 as well on my computer. So, what to do? Thanks. ... [GiDlist] gid7.4.9b vs Redhat 8
Send by: Sebastian Lambeck Hm, I just looked in the README.txt of the GiD installation package and I only found the following lines: "2004-jul-06 Current version is 7.4.9b beta" It seems to be the static one. Is this the problem? > Have you installed the dynamic (gid7.4.9b-dyn.tar.gz) or static > (gid7.4.9b.tar.gz) version? > > On Friday 08 October 2004 10:37, Sebastian Lambeck wrote: > > Hello > > > > I got told by your support team that I have to install gid7.4.9b on my > > Redhat 8 linux machine, because the previous 7.x versions break down > when > > mirroring in postprocess mode. However, when I try to run GiD version ... [GiDlist] gid7.4.9b vs Redhat 8
Send by: Enrique Escolano Inside the "download beta versions" Linux section ( ftp://gid.cimne.upc.es/pub/gid_adds/Linux/ ) are available two 7.4.9b compilations: gid7.4.9b.tar.gz (static version) and gid7.4.9b-dyn.tar.gz (dynamic library version) What's your version? ----- Original Message ----- From: "Sebastian Lambeck" <pcguru at gmx.de> To: <gidlist at gatxan.cimne.upc.es> Cc: <gidlist at gatxan.cimne.upc.es... [GiDlist] gid7.4.9b vs Redhat 8
Send by: Sebastian Lambeck I installed the static one (gid7.4.9b.tar.gz). > Inside the "download beta versions" Linux section ( > ftp://gid.cimne.upc.es/pub/gid_adds/Linux/ ) > are available two 7.4.9b compilations: > > gid7.4.9b.tar.gz (static version) > and > gid7.4.9b-dyn.tar.gz (dynamic library version) > > What's your version? > > ----- Original Message ----- > From: "Sebastian Lambeck" <pcguru at gmx.de> ... [GiDlist] gid7.4.9b vs Redhat 8
Send by: Sebastian Lambeck I just found out that the Tcl version 8.4 I have installed on my computer might be the reason for the problems. When I executed "gid.exe" directly (not script) I got the message that GiD is not happy with Tcl 8.4 but wants to use 8.3. > I installed the static one (gid7.4.9b.tar.gz). > > > > Inside the "download beta versions" Linux section ( > > ftp://gid.cimne.upc.es/pub/gid_adds/Linux/ ) > > are available two 7.4.9b compilations: > > > > gid7.4.9b.tar.gz (static version) > > and ... [GiDlist] gid7.4.9b vs Redhat 8
Send by: Rafael Doig Sebastian, just try the dynamic version: gid7.4.9b-dyn.tar.gz I use this version on my Redhat distribution. Rafael On Wed, 2004-10-13 at 19:17, Sebastian Lambeck wrote: > I just found out that the Tcl version 8.4 I have installed on my computer > might be the reason for the problems. When I executed "gid.exe" directly > (not script) I got the message that GiD is not happy with Tcl 8.4 but wants > to use 8.3. > > > I installed the static one (gid7.4.9b.tar.gz). > > > > > > > Inside the "download beta versions" Linux section ( > > > ... [GiDlist] gid7.4.9b vs Redhat 8
Send by: Sebastian I tried it now, but it did not work. It is still asking for the correct Tcl version (8.3). Sebastian Rafael Doig wrote: >Sebastian, > >just try the dynamic version: gid7.4.9b-dyn.tar.gz >I use this version on my Redhat distribution. > >Rafael > >On Wed, 2004-10-13 at 19:17, Sebastian Lambeck wrote: > > >>I just found out that the Tcl version 8.4 I have installed on my computer >>might be the reason for the problems. When I executed "gid.exe" directly >>(not script) I got the message that GiD is not happy with Tcl 8.4 but wants ... [GiDlist] gid7.4.9b vs Redhat 8
Send by: ronda Why don't you follow the instructions and install gid in order to GiD use it's own tcl scripts? regards On Wednesday 13 October 2004 12:17, Sebastian Lambeck wrote: > I just found out that the Tcl version 8.4 I have installed on my computer > might be the reason for the problems. When I executed "gid.exe" directly > (not script) I got the message that GiD is not happy with Tcl 8.4 but wants > to use 8.3. > > > I installed the static one (gid7.4.9b.tar.gz). > > > > > Inside the "download beta versions" Linux section ( > > > ftp://gid.cimne.upc.es/pub/gid_adds/Linux/... [GiDlist] gid7.4.9b vs Redhat 8
Send by: Sebastian I did install GiD following the instructions. However, since it did not work - I always got a segmentation fault when executing the script 'gid' (not the executable itself!) - and you did not answer yet, so I was searching myself for the problem and I tried to execute the gid.exe itself. In doing this I got this message that on my computer the installed Tcl version (8.4) is obviously to new for GiD. Sebastian ronda wrote: >Why don't you follow the instructions and install gid in order to GiD use it's >own tcl scripts? > > >On Wednesday 13 October 2004 12:17, Sebastian Lambeck wrote: ... [GiDlist] Non uniform loads in problem type
Send by: José Carlos Dear friends! I am from Federal University of Minas Gerais, Brazil, and, in my doctorate, I am developing a problem-type to GiD applicated to thermic-mechanics analysis. So, I have a problem: I need introduce non-uniform loads (trapezoidal loads, triangle loads, parabolic loads). It is, selecting a line, I give the inicial and the final values of load and, when meshing, I want know the value of load along of element's faces (for obtain the correct integrating over Gauss points). Interesting me the load value over each element's node and the element's face over that the load inside. I need to know how make it in CND file and in BAS file. In my dat file I need something like: DISTRIBUTED LOADS ELEMENT FACE FX_INI FX_FINAL FY_INI FY_FINAL FZ_INI FZ_FINAL 1 12 100 100 100 80 0 0 2 23 100 100 80 50 0 0 3 23 100 100 50 40 0 0 ... Thanks a lot, José Carlos L. Ribeiro, Civil Engineer Doctorate Student of UFMG/Brazil Master in Structures Engineering ... [GiDlist] Non uniform loads in problem type
Send by: Enrique Escolano You can try to use a condition with some #FUNC# field. Can use some mathematical expression, using other field values, and x,y,z of each node or element center. For example, see the next Pressure_SelfCalculated field : CONDITION: Face-Load-Triangle CONDTYPE: over lines CONDMESHTYPE: over face elements CANREPEAT: yes QUESTION: Pressure_Min: VALUE: 0 QUESTION: Coord_Y_PressureMin: VALUE: 0 QUESTION: Pressure_Max: VALUE: 0 QUESTION: Coord_Y_PressureMax: VALUE: 0 QUESTION: Pressure_SelfCalculated#FUNC#(Cond(3,REAL)*(y-Cond(2,REAL))/(Cond(4,REAL)-Cond(2,REAL))+Cond(1,REAL)*(Cond(4,REAL)-y)/(Cond(4,REAL)-Cond(2,REAL))) VALUE: 0 STATE: hidden END CONDITION And can use a bas file similar to: ... *set condition Face-Load-Triangle elems *loop elems onlyincondition *elemsnum *globalnodes *cond(Pressure_SelfCalculated) *end elems ... Enrique Escolano ----- Original Message ----- From: "José Carlos" <... [GiDlist] Exporting NASTRAN file from GID
Send by: Gabriel Preda Hi. I am new around. I work for a company comercializing a stand-alone high performance electromagnetic analysis software (EMSolution from SSIL Inc. Tokyo, Japan); I was testing Gid in view of recommending as the pre/post-processor of choice for our clients. Currently we recommnend FEMAP but as our customer pool is increasing (and their budget size average is shrinking) Gid becames very interesting. We currently include NASTRAN as preprocessor format for our software so the transfer must be very smooth, we thought. But, surprise, our Windows version release 7 Gid (1 month trial version) exports NASTRAN 2D mesh (first trials) in a strange form, as follows: -if only triangular mesh is present in a model, material properties (or property ID's) set to elements are outputted correctly in NASTRAN format; -if only quad mesh is present in a model, material properties (or property ID's) set to elements are all reset to the last ID; for example, if we define 4 property ID's (and thereforre, the mesh must have 4 different regions each with his own property), the exported mesh will have only one property. -if the mesh contains both tri and quad subdomains (let's say, surfaces meshed with tri mesh and quad mesh), the NASTRAN mesh is outputted with 2 properties: one is assigned to triangular meshed regions and another property is assigned to quad meshed regions; Details: materials were created using "ANSISbla-bla-plate type) NOTE: No problem with the GID (*.msh) file exported; I inspected the ASCII file and it's straight; properties are there where should be; Questions: 1. Is the behavior experienced before by anyone? 2. Could this be only a problem with the trial version, maybe? Observation: of course, inspecting the GID format, we also realized that it is simple to parse and it will be very easy to include the format in our set of supported formats but stil we ould like to offer also NASTRAN format. Sincerely , Gabriel Preda Gabriel Preda Science Solutions International Laboratory, Inc. 2-21-7, Naka-cho, Meguro-ku, Tokyo 153-0065 JAPAN Phone:+81-3-3711-8900, Fax:+81-3-3711-8910 E-mail: ... [GiDlist] Exporting NASTRAN file from GID
Send by: Enrique Escolano This is a small bug on the NastranMesh.bas template (written the quadrilateral's material). I attach the corrected template. You must copy it inside the directory /templates of GiD. This template is only a demostration of GiD customization. It does'nt include off course all NASTRAN capabilities. You can also download the GiD-Nastran 'problemtype', a good GiD to NASTRAN customization, including materials, boundary conditions, etc, and the output of the calculation file in NASTRAN format. (the NASTRAN solver is not included) Can download this problemtype, directly from the GiD menu: Data->Problemtype->Interenet retrieve... Nastran 2.4 or from the GiD+ page: ... [GiDlist] Fw: Exporting NASTRAN file from GID : an mesh example
Send by: Gabriel Preda Hello, Everybody. I am sorry, but I would like an answer mainly from the customer support people from GID, if someone is around (I know, Spain time-zone is far away ...) Please reffer to previous e-mail, included bellow. I come back to attach an example of mesh (please don't mind the ugly shapes, there are one star and a L-shape with different material properties) to illustrate the problem; if NASTRAN mesh is exported, only the star and air appears; the L-=shape is gone; furthermore, if in GID then we set all mesh to be quad, only one material will be set for all regions (let's say, air overall). Sincerely yours, Gabriel Preda ----- Original Message ----- From: Gabriel Preda To: ... [GiDlist] CAN'T generate volume mesh
Send by: Henry Liu Hi, everyone I am a new user of GiD. I got a question about how to generate volume mesh from surface geometry or surface mesh. My problem is in twofold. First, I have a surface geometry (see attachment volume_bad.geo -- an example in advanced tutorial, I did not find the respective solution there) but I can't generate volume entity (by creating a volume in GiD), thus I can't generate volume mesh. Second, I have a surface mesh and I can generate volume entity (by creating volume with search option in GiD). When I am trying to generate volume mesh, it gave me wrong message like (problematic surfaces: 14) and so on. Could anyone tell wether this is due to wrong surface geometry or surface mesh, or is there any way out to fix it manually on problematic surfaces? thanks Henry Liu ===== Henry Liu ______________________________________________________________________ Post your free ad now! ... [GiDlist] CAN'T generate volume mesh
Send by: Rafael Doig Hi Henry, I use to generate a volume mesh (hexahedras) from a surface like following: 1. Once you finish the geometry (surface), just mesh it. I.e with quadrilateral elements. 2. Go to menu point [utilities] => [copy] 3. A copy window appears: - select entities type = Elements - Transformation = i.e. Translation - select or insert first and second point (that is the sweep path) - THEN Do extrude = VOLUMES Volume elements will be created. In this case hexahedras. In the same way you can extrude a surface (geo) to a volume (geo) and then mesh the volume. I hope, it solve your problem. Regards, Rafael On Wed, 2004-10-13 at 00:09, Henry Liu wrote: >... [GiDlist] CAN'T generate volume mesh
Send by: Enrique Escolano The file 'volume_bad' has duplicated four lines: 6 - 20, and 7 - 29, then cannot closed a volume. (can see the entities number with View->Label->All) You can see also graphically this problem with: Utilities->Draw higher->Lines To solve it, can collapse duplicated (not shared) entities: Utilities->Collapse->Model Then can create the volume, without problems, selecting all surfaces as boundary. Regards Enrique Escolano ----- Original Message ----- From: "Henry Liu" <masterdailymemo at yahoo.ca> To: <gidlist at gatxan.cimne.upc.es... Fw: [GiDlist] Fw: Exporting NASTRAN file from GID : an mesh example
Send by: Gabriel Preda This message was unanswered after 1 day. ----- Original Message ----- From: Gabriel Preda To: gidlist at gatxan.cimne.upc.es Sent: Tuesday, October 12, 2004 5:01 PM Subject: [GiDlist] Fw: Exporting NASTRAN file from GID : an mesh example Hello, Everybody. I am sorry, but I would like an answer mainly from the customer support people from GID, if someone is around (I know, Spain time-zone is far away ...) Please reffer to previous e-mail, included bellow. I come back to attach an example of mesh (please don't mind the ugly shapes, there are one star and a L-shape with different material properties) to illustrate the problem; if NASTRAN mesh is exported, only the star and air appears; the L-=shape is gone; furthermore, if in GID then we set all mesh to be quad, only one material will be set for all regions (let's say, air overall). Sincerely yours, Gabriel Preda ----- Original Message ----- From: Gabriel Preda To: ... [GiDlist] Curved triangles and straight quadrilaterals
Send by: Andrea Calaon Curve triangles and straight quadrilaterals Hi everyone, Im using GiD 7.4.7b for windows. I have the following problem: Surfaces with curved contours meshed with triangles have curved elements on the curved contour lines, but if meshed with quadrilaterals the elements on the curved contours have straight lines. Other data: * I use Draw quadratic elements as curves * I mesh 2D surfaces embedded in 3D * The mesh is quadratical Am I doing or interpreting something wrong? Thanks for any help. Kind regards Andrea Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Curved triangles and straight quadrilaterals
Send by: Enrique Escolano The quadratic nodes of quadrilaterals are located over the geometric entities (curved), same as triangles. Are you sure than your mesh is quadratic, and are drawing the elements as curved? I tried with GiD 7.4.9b and it works ok. Enrique Escolano ----- Original Message ----- From: "Andrea Calaon" <andrea at beasy.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Thursday, October 14, 2004 5:16 PM Subject: [GiDlist] Curved triangles and straight quadrilaterals Curve triangles and straight quadrilaterals Hi everyone, I'm using GiD 7.4.7b for windows. I have the following problem: Surfaces with curved contours meshed with triangles have curved elements on the curved contour lines, but if meshed with quadrilaterals the elements on the curved contours have straight lines. Other data: * I use "Draw quadratic elements as curves" * I mesh 2D surfaces embedded in 3D * The mesh is quadratical Am I doing or interpreting something wrong? Thanks for any help. Kind regards Andrea Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Curved triangles and straight quadrilaterals
Send by: Andrea Calaon Dear Enrique, I send you 4 pictures showing what kind of mesh I get in 3D and 2D cases. With quadrilaterals the location of the nodes is on the straight lines. I set the mesh to quadratic thorough the menu and tried with the command "Meshing quadratic" as well. In preferences the "as curved" choice is selected. I checked the coords: the nodes are on the straight lines in case of quadrilaterals and on the curve in case of triangles. On a Linux machine with GiD 7.4.7b it works fine. Kind regards Andrea On 14 Oct 2004 at 21:05, Enrique Escolano wrote: > The quadratic nodes of quadrilaterals are located over the geometric > entities (curved), same as triangles. ... [GiDlist] Re: Can't generate surface mesh or even volume mesh by surface geometry
Send by: Henry Liu Hi again, everyone I am a new user of GiD. I still got the question about how to generate volume mesh. I have a surface geometry (see attachment). I can't generate surface mesh through ->Meshing ->Generate. But I can generate volume entity (by creating volume by ->Geometry ->Create -> volume ->search). When I am trying to generate volume mesh through ->Meshing ->Generate, it gave me wrong message in a pop-up window as below. ------------------------------------------ 1 wrong volumes Num Description 1 Contour element 169 is not correct ------------------------------------------ Could anyone tell wether this is due to wrong surface geometry, or is there any way out to fix it manually? Thanks again! Tom ===== ______________________________________________________________________ Post your free ad now! ... [GiDlist] Re: Can't generate surface mesh or even volume mesh by surface geometry
Send by: Enrique Escolano In general, is more difficult to generate a mesh over a "surface mesh" than over a NURBS surface (because a NURBS is more smooth). If it's possible, it's recommended to avoid to work with "surface-meshes" as geometric entity. In your case, for example, it's trivial to delete all surfaces, and reconstruct it from the boundary: Geometry->Create->Nurbs surface->Automatic, and select with 3, 4 and 5 sides. Then create a volume selecting all boundary surfaces, and can generate a mesh without problems. I attach your file modified with this procedure. Regards Enrique Escolano ----- Original Message ----- From: "Henry Liu" <... [GiDlist] Quadratic mesh problem solved
Send by: Andrea Calaon Hi everyone, I found why the surface meshing was giving me problems: Rfast doesn't mesh curved quadratical elements with curved sides, while Rsurf is ok. In case of triangles everything is fine. Is this a bug? kind regards Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: andrea at beasy.com [GiDlist] Quadratic mesh problem solved
Send by: Enrique Escolano All my tests with GiD 7.4.9b for Widows works ok for quadratic triangles and quadrilaterals. With all meshers. Enrique Escolano ----- Original Message ----- From: "Andrea Calaon" <andrea at beasy.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Friday, October 15, 2004 5:19 PM Subject: [GiDlist] Quadratic mesh problem solved > Hi everyone, > I found why the surface meshing was giving me problems: > Rfast doesn't mesh curved quadratical elements with curved sides, while ... [GiDlist] Quadratic mesh problem solved
Send by: Andrea Calaon Do you get quadrilaterals with curved sides using Rfast? My problem is that using Rfast the sides of quadrilaterals on curved surface boundaries are linear and not quadratic. Triangles are fine (have curved sides). I mesh only surfaces surrounging volumes, which on the other hand don't get meshed. Andrea On 18 Oct 2004 at 16:39, Enrique Escolano wrote: > All my tests with GiD 7.4.9b for Widows works ok for quadratic triangles and > quadrilaterals. With all meshers. > > Enrique Escolano > > ----- Original Message ----- > From: "Andrea Calaon" <andrea at beasy.com... [GiDlist] Questions
Send by: Dinh Van Nguyen Dear Sirs/Madame I join the forum with the following question: 1. Is there anyway to generate the node number of the mesh in a desire order (not arbitrarily generated as usual) ? 2. How can I inplement the link element which composes of two pairs of nodes (4 node), and each pair of node is in the same coordinates ? Hope to receive your answers and advices soon. Mr. Nguyen D.V. --------------------------------- Do you Yahoo!? Yahoo! Mail CNET Editors' Choice 2004. Tell them what you think. a -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20041019/a8f5f48e/attachment.htm... [GiDlist] Questions
Send by: Enrique Escolano About the first question, It's not possible to have the node number control. Your analysis code can renumber this nodes for special cases. Do you have some suggestion about other interesting numeration modes? About the second question, you can create a "surface contact", selecting two different lines in the same location. Regards Enrique Escolano ----- Original Message ----- From: Dinh Van Nguyen To: gidlist at gatxan.cimne.upc.es Cc: nguyendhhh at yahoo.com Sent: Tuesday, October 19, 2004 11:36 AM Subject: [GiDlist] Questions Dear Sirs/Madame I join the forum with the following question: 1. Is there anyway to generate the node number of the mesh in a desire order (not arbitrarily generated as usual) ? 2. How can I inplement the link element which composes of two pairs of nodes (4 node), and each pair of node is in the same coordinates ? Hope to receive your answers and advices soon. Mr. Nguyen D.V. ------------------------------------------------------------------------------ Do you Yahoo!? Yahoo! Mail - CNET Editors' Choice 2004. Tell them what you think. <a -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] volumen mesh
Send by: pablo p del castillo Hello; I would like to known if "import tolerance" has influence over mesh generator. I have a volumen with elements between 0.01 to 2 size, and with transition 0.5 it mesh successfull, but if i try with 0.4 or less it said me "problematic volumen", What is the reason? is there another way? Thanks --------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20041020/dd694724/attachment.htm... [GiDlist] volumen mesh
Send by: Enrique Escolano Import tolerance has doesn't influence the mesh generation. It's used when collapsing, or after import a file, to join entities. In other hand, as you related, the Unstrucured size transitions parameter obviously has influence on the mesh. It's possible to mesh successfull using a parameter value, and have problems to mesh with other value. Enrique ----- Original Message ----- From: pablo p del castillo To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, October 20, 2004 6:30 PM Subject: [GiDlist] volumen mesh Hello; I would like to known if "import tolerance" has influence over mesh generator. I have a volumen with elements between 0.01 to 2 size, and with transition 0.5 it mesh successfull, but if i try with 0.4 or less it said me "problematic volumen", What is the reason? is there another way? Thanks ------------------------------------------------------------------------------ -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Re: Some questions
Send by: Henry Liu Hello, I am a new user of GiD-7.2. I have some questions listed as below. 1. I have two components with different material property. I need to assembly them into one model. Will I use "Geometry -> create -> contact ->" to create a contact surface, then the seperated contact volume on their interface so that the interface will be moving in same manner when an external load is applied? Is ther way to check that two components are conatct togehter rather than touch only? (The attachment "parts_contact" is a very simple example of two parts and I want to know how to create conatct surface and volume) 2. What is the purpose of "Collapse model" and so on under Utilities? I know only that it is used to delete overlapping entities on the model. Is there any other purpose? Can I use "Collapse model" for any cases? 3. I have a same ascii input file with extension .msh. They look different when I import it into GiD as "GiD mesh" and as "surface mesh" (The attchment "slab.msh" is an example). What is the mechnism behind GiD when an mesh file is imported as a surface mesh? Thanks a lot in advance! henry ===== ______________________________________________________________________ Post your free ad now! ... [GiDlist] error tcl script
Send by: pablo p del castillo Hello; I was doing postprocess with "animate control" , so i was to preprocess, but i forget to close the "animate control" window, and now every time that i want to worl with view style, animate or similar it says Error tcl script. i uninstalled, and resinstall, but it never works, what can i do?? Advanced thanks --------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20041023/336535a0/attachment.htm... [GiDlist] error tcl script
Send by: Enrique Escolano Try to delete the "gid.ini" file (located for Windows 2000/XP in C:Documents and Settings<your_user>Datos de programaGiD) After delete this file, when you start GiD, if not exists this file, it's re-created with default values. Enrique Escolano ----- Original Message ----- From: pablo p del castillo To: gidlist at gatxan.cimne.upc.es Sent: Saturday, October 23, 2004 10:03 AM Subject: [GiDlist] error tcl script Hello; I was doing postprocess with "animate control" , so i was to preprocess, but i forget to close the "animate control" window, and now every time that i want to worl with view style, animate or similar it says Error tcl script. i uninstalled, and resinstall, but it never works, what can i do?? Advanced thanks ------------------------------------------------------------------------------ -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Unstructured mesh changes to triangles
Send by: Andrea Calaon Hi everyone, I noticed that assigning a null unstructured mesh size to a surface which was previously assigned a structured quadrilaterals mesh changes the element type to triangles. Is it a wanted behaviour? Kind regards Andrea [GiDlist] GiD7.5.0b for Windows
Send by: Enrique Escolano Dear GiD users. Since last Friday a new GiD beta version for Windows 7.5.0b was available This version 7.5.0b has a bug to run the calculation process. To fix this bug, It is necessary to change the file command.exe (located inside the GiD directory) by the new attached file "command.zip" (don't forget to unzip) Also it is possible to re-download and re-install GiD from our web page: ftp://gid.cimne.upc.es/pub/gid_adds/Windows/GiD7.5.0b-win.exe Regards _______________________________________________________ Enrique Escolano http://www.gidhome.com... [GiDlist] multiple batch scripts
Send by: Andres Peratta Hi there, In a given problem type (ptype), I would like to know how to launch different batch scripts from GID, (for example: ptype_0.unix.bat, ptype_1.unix.bat, or ptype_2.unix.bat) depending on the value of a control variable defined in the problem_data. Is that possible? Many thanks, Andres [GiDlist] multiple batch scripts
Send by: Enrique Escolano A possible dark trick: Can use a secondary bas file (<ptype>-1.bas) to write "on fly" a secondary bat file, depending on some problem_data parameter. The main ptype.unix.bat must rename the dat file (result of the secondary template), to set .unix.bat extension, and run it (on Unix platform must also use chmod in order to be run) for example the <ptype>.unix.bat content is similar to: rename %1-1.dat secondary.unix.bat chmod +x secondary.unix.bat secondary.bat %1 %2 %3 Enrique Escolano ----- Original Message ----- From: "Andres Peratta" <andres at wessex.ac.uk... [GiDlist] multiple batch scripts
Send by: Enrique Escolano Another more elegant method:
Can define in your <problemtype>.tcl file a procedure, named SelectGIDBatFile
SelectGIDBatFile is called automagically by GiD and must return the .bat file name or nothing
For example, if you have a general data field named Solver#CB(solver_1,solver_2), can use:
proc SelectGIDBatFile { directory basename } {
set batfile ""
if { [GidUtils::GetProblemDataValue "Solver#CB(solver_1,solver_2)"] == "solver_1" } {
set batfile ptype_1.unix.bat
} else {
set batfile ptype_2.unix.bat
}
return $batfile
}
Enrique Escolano
----- Original Message -----
From: Enrique Escolano
To: gidlist at gatxan.cimne.upc.es...
[GiDlist] Uniform load distribution
Send by: Benedictus Benny Po Hello GiD fans, users and experts wherever you are, I want to share with you my problem that I have and hope to get any solutions and suggest from you. I'm devoloping interface between FEAP and GiD 7.2 at my institute for my Master Thesis. I would like GiD to generate uniform load to be distributed along the nodes I have after mesh generation. This load generation result in form of single nodal loads over every node along the line will be used in FEAP as input for LOAD macro editor: LOAD node1, X-coor ,Y-coord ,p_x, p_y node2, X-coor ,Y-coord, p_x, p_y node3, X-coor ,Y-coord, p_x, p_y ...etc....... My .cnd file : NUMBER:5 CONDITION:Face-Load CONDTYPE:over lines CONDMESHTYPE:over nodes QUESTION:L1.....(length of constant uniform load) VALUE:10 (m) QUESTION:n_x....(Number of face elements (which are under uniform load) to be generated) VALUE:4 QUESTION:q_x...(Uniform Load x direction) VALUE:0.0 QUESTION:q_y...(Uniform Load y direction) VALUE:-10 (kN/m) QUESTION:p_x..(Nodal load x direction) VALUE:0.0 QUESTION:p_y#FUNC#(Cond(4,real)*Cond(1,real)/Cond(2,int)*0.5).....(nodal load y direction) VALUE:Autocalculate STATE:hidden and my .bas file : *Set Cond Face-Load *nodes *Canrepeat *If(CondNumEntities(Int)>0) LOAD *loop nodes *onlyInCond *Nodesnum *NodesCoord(1,real) *NodesCoord(2,real) *cond(p_x,real) *cond(p_y,real) *End loop nodes *endif The result I have in my .dat file is like that: (for L1=10(m), n_x=4 and q_y = -10(kN/m)) LOAD Node X-coor Y-Coord p_x p_y 1, 0.00, 0.0, 0.0, -12.5 2, 2.50, 0.0, 0.0, -12.5 3, 5.00, 0.0, 0.0, -12.5 4, 7.50, 0.0, 0.0, -12.5 5, 0.00, 0.0, 0.0, -12.5 I did not see any possibility to tell GiD that at node 2, 3 and 4, since they get two times the half of the load from left element and right element, they should be each -25 , instead of -12.5. If I would use in my .cnd file CANREPEAT: yes after CONDMESHTYPE: nodes, I would get the same list of LOAD as above once more time , and it's still not correct. The correct result should be : LOAD Node X-coor Y-Coord p_x p_y 1, 0.00, 0.0, 0.0, -12.5 2, 2.50, 0.0, 0.0, -25 3, 5.00, 0.0, 0.0, -25 4, 7.50, 0.0, 0.0, -25 5, 10.00, 0.0, 0.0, -12.5 I hope you understand what I meant and I'm looking forward to hearing from you. Best regards, Benedictus Benny PO --------------------------------- Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage ! Créez votre Yahoo! Mail Le nouveau Yahoo! Messenger est arrivé ! Découvrez toutes les nouveautés pour dialoguer instantanément avec vos amis.Téléchargez GRATUITEMENT ici ! -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] Uniform load distribution
Send by: Enrique Escolano You can use Tcl language for enhanced features.
Can call a tcl procedure from the bas file with the *tcl command
This is a sample:
File .cnd Define a condition over lines, over face elements (not over nodes), for example, named Face-Load
NUMBER: 1 CONDITION: Face-Load
CONDTYPE: over lines
CONDMESHTYPE: over face elements
QUESTION: Pressure
VALUE: 0.0
HELP: Pressure on line to be transferred as equivalent nodal loads
END CONDITION
File .bas Call a tcl procedure, named SampleLoadWriteNodalLoads
...
*tcl(SampleLoadWriteNodalLoads)
...
File .tcl Define this tcl procedure.
proc SampleLoadWriteNodalLoads { } {
#set a {{10 1 - 3} {2 1 - 3} {6 3 - 3} {1 1 - 3}}
set infocond [GiD_Info conditions Face-Load mesh]
foreach item $infocond {
set elem [lindex $item 0]
set face [lindex $item 1]
set pressure [lindex $item 3]
set infoelem [GiD_Info mesh elements Triangle $elem]
if { $face == 1 } {
set n1 [lindex $infoelem 1]
set n2 [lindex $infoelem 2]
} elseif { $face == 2 } {
set n1 [lindex $infoelem 2]
set n2 [lindex $infoelem 3]
} else {
#assumed face==3 ,only for triangles
set n1 [lindex $infoelem 3]
set n2 [lindex $infoelem 1]
}
set c1 [lrange [GiD_Info mesh nodes $n1] 1 end]
set c2 [lrange [GiD_Info mesh nodes $n2] 1 end]
set dist [::MathUtils::VectorDistance $c1 $c2]
set force [expr {$dist*$pressure*0.5}]
if { [info exists F($n1)] } {
set F($n1) [expr {$F($n1)+$force} ]
} else {
set F($n1) $force
}
if { [info exists F($n2)] } {
set F($n2) [expr {$F($n2)+$force} ]
} else {
set F($n2) $force
}
}
set result "LOAD
"
append result "Node F
"
foreach node [array names F] {
append result "$node $F($node)
"
}
return $result
}
This procedure requires the last 7.5.0b GiD beta version.
GiD_Info (or .gid.central.s info) is a tcl procedure defined by GiD to return internal information.(read GiD help about Tcl-Tk extension)
The other command are Tcl standard (can see more information about Tcl/Tk language from the Internet)
I attach a zip file with this sample problemtype source.
Regards
Enrique Escolano
----- Original Message -----
From: Benedictus Benny Po
To: ...
[GiDlist] Some problems with Meshing Structured Concentrate Elements
Send by: Andrea Calaon Hi everyone, I'm using GiD7.5.0b and I'm having problems using "Meshing" "Structured" "Concentrate Elements". The arrows visualized are not always in the direction the concentration will be. After some changes they start to reverse and the behaviour is funny. Sometimes the concentration doesn't happen on some lines. Is there anyone else experiencing the same kind of problems? Andrea Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: andrea at beasy.com... [GiDlist] Some problems with Meshing Structured Concentrate Elements
Send by: LI Hai-tao Hello: I met the same problem as you today. I changed back to 7.4.9B. :( -----Original Message----- From: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es] On Behalf Of Andrea Calaon Sent: Tuesday, November 02, 2004 11:49 PM To: gidlist at gatxan.cimne.upc.es Subject: [GiDlist] Some problems with Meshing Structured Concentrate Elements Hi everyone, I'm using GiD7.5.0b and I'm having problems using "Meshing" "Structured" "Concentrate Elements". The arrows visualized are not always in the direction the concentration will be. After some changes they start to reverse and the behaviour is funny. Sometimes the concentration doesn't happen on some lines. Is there anyone else experiencing the same kind of problems? Andrea Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: ... [GiDlist] Some problems with Meshing Structured Concentrate Elements
Send by: Andrea Calaon I'll do the same. Thanks ;-) On 3 Nov 2004 at 19:47, LI Hai-tao wrote: > Hello: > I met the same problem as you today. I changed back to 7.4.9B. :( > > > -----Original Message----- > From: gidlist-admin at gatxan.cimne.upc.es > [mailto:gidlist-admin at gatxan.cimne.upc.es] On Behalf Of Andrea Calaon > Sent: Tuesday, November 02, 2004 11:49 PM > To: gidlist at gatxan.cimne.upc.es... [GiDlist] Some problems with Meshing Structured Concentrate Elements
Send by: Enrique Escolano Can you send us a sample with this problem. It will be corrected for the next beta Enrique Escolano ----- Original Message ----- From: "Andrea Calaon" <andrea at beasy.com> To: <gidlist at gatxan.cimne.upc.es> Sent: Wednesday, November 03, 2004 1:52 PM Subject: RE: [GiDlist] Some problems with Meshing Structured Concentrate Elements > I'll do the same. Thanks ;-) > > On 3 Nov 2004 at 19:47, LI Hai-tao wrote: > > > Hello: >... [GiDlist] Some problems with Meshing Structured Concentrate Elements
Send by: LI Hai-tao You can just try a hexahedral volume. When I mesh a hexahedron, it happens. >-----Original Message----- >From: gidlist-admin at gatxan.cimne.upc.es >[mailto:gidlist-admin at gatxan.cimne.upc.es] On Behalf Of >Enrique Escolano >Sent: Wednesday, November 03, 2004 10:04 PM >To: gidlist at gatxan.cimne.upc.es >Subject: Re: [GiDlist] Some problems with Meshing Structured ... [GiDlist] troubles with mesh
Send by: pablo p del castillo I have a volumen with tetraedrals, and it has negative volumen (in one element), what can i avoid this trouble?? Thanks --------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20041103/f6099837/attachment.htm [GiDlist] GiD's drawing symbol
Send by: Benedictus Benny Po Dear GiD's team and users, I have created some symbols of support and of nodal load in my *.sim file. After I assign all of them in GiD (under Condition menu) I saw that every symbols that I assign are appeared. But if I leave the Condition menu, all the symbols that I have assigned and drawed are disappeared, so I cannot maintain them to stay together with my whole structure I have drawn. My question is, is it possible to maintain these symbols appearance ? because I have to go to the menu everytimes I want to see the condition that I have in my structure. Another question regarding my previous problem with uniform load, I did not find the attach file in zip that you said you attach a zip file with that sample problemtype. Best Regards, Benedictus Benny PO Send GiDlist mailing list submissions to ... [GiDlist] GiD's drawing symbol
Send by: Enrique Escolano At this moment, 'draw conditions' is only a temporary state, it's not possible to draw permanently. Maybe for the next version... About the attachment of the previous mail, probably your mail server remove (by security) the zip attachments. You can directly copy and paste form the previous mail the contents of the related files: SampleLoad.cnd, SampleLoad.bas , and SampleLoad.tcl, and put inside a problemtype directory named SampleLoad.gid Enrique Escolano ----- Original Message ----- From: Benedictus Benny Po To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, November 03, 2004 1:53 PM Subject: [GiDlist] GiD's drawing symbol Dear GiD's team and users, I have created some symbols of support and of nodal load in my *.sim file. After I assign all of them in GiD (under Condition menu) I saw that every symbols that I assign are appeared. But if I leave the Condition menu, all the symbols that I have assigned and drawed are disappeared, so I cannot maintain them to stay together with my whole structure I have drawn. My question is, is it possible to maintain these symbols appearance ? because I have to go to the menu everytimes I want to see the condition that I have in my structure. Another question regarding my previous problem with uniform load, I did not find the attach file in zip that you said you attach a zip file with that sample problemtype. Best Regards, Benedictus Benny PO Send GiDlist mailing list submissions to ... [GiDlist] Passing command line instructions to GiD
Send by: Andrea Calaon Hi GiD team, I was wandering if there is any easy way of passing instruction to GiD from a command line or shell. Something like: - Open GiD - Open a specific .gid. directory - Display something: view, layer, render ... Thanks for any suggestion Have a nice day! Andrea [GiDlist] Re: .lin file format
Send by: Henry Liu Hi, everyone I get a question regarding file format. The file (example.lin) is generated by assigning "conditions" and "materials" on a 3D mesh and then the mesh is exported as an ASCII GiD project. This above file is one of them in the example.gid folder. I read the online user manual and its format is not explained. So could someone give a clear explaination on its format and its relationship with other files in that folder? Thanks in advance Henry ______________________________________________________________________ Post your free ad now! http://personals.yahoo.ca [GiDlist] Re: .lin file format
Send by: Enrique Escolano The *.lin file contain the values of the conditions and pointers to then assigned entities. This applied conditions are separated of the geometry definition *.geo file. The format of the *.lin file is undocummented (by default is binary, but exporting as an ASCII project it is written in ASCII mode). Are you really interested to directly write this applied conditions file? If you want only to read this information, it's best to write a template file *.bas to extract the desired information in your required format. Regards Enrique Escolano ----- Original Message ----- From: "Henry Liu" <masterdailymemo at yahoo.ca... [GiDlist] Re: .lin file format
Send by: Henry Liu Hi, everyone I am sorry to attach the example.lin in the previous email. Please see the attachment for detail. Thanks Henry ______________________________________________________________________ Post your free ad now! http://personals.yahoo.ca -------------- next part -------------- A non-text attachment was scrubbed... Name: example.lin Type: application/octet-stream Size: 72857 bytes Desc: example.lin Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20041105/8b8c5988/attachment.obj... [GiDlist] tcl zip attachment
Send by: Benedictus Benny Po
Hallo Enrique,
Thanks for you explanation about GiD's symbol.
I'am afraid not to really understand you about the tcl zip attachment,
and then you said I could copy the SampleLoad.cnd, SampleLoad.bas,
SampleLoad.cnd. But I couldn't find them in the previous mail
(in GiDlist archives ?). Could you send me again the zip attachment
regarding uniform load distribution.
Or you meant only these files below as previous mail
that I should copy ?
This is a sample: File .cnd Define a condition over lines, over face elements (not =over=20 =3D nodes), for example, named Face-Load NUMBER: 1 CONDITION: Face-Load CONDTYPE: over lines CONDMESHT! YPE: over face elements QUESTION: Pressure VALUE: 0.0 HELP: Pressure on line to be transferred as equivalent nodal loads END CONDITION File .bas Call a tcl procedure, named SampleLoadWriteNodalLoads .. *tcl(SampleLoadWriteNodalLoads) .. File .tcl Define this tcl procedure. proc SampleLoadWriteNodalLoads { } { #set a {{10 1 - 3} {2 1 - 3} {6 3 - 3} {1 1 - 3}} set infocond [GiD_Info conditions Face-Load mesh] foreach item $infocond { set elem [lindex $item 0] set face [lindex $item 1] set pressure [lindex $item 3] set infoelem [GiD_Info mesh elements Triangle $elem] if { $face =3D3D=3D3D 1 } { set n1 [lindex $infoelem 1] set n2 [lindex $infoelem 2]=3D20 } elseif { $face =3D3D=3D3D 2 } { set n1 [lindex $infoelem 2] set n2 [!
lindex
$infoelem 3] } else { #assumed face=3D3D=3D3D3 ,only for triangles set n1 [lindex $infoelem 3] set n2 [lindex $infoelem 1] } set c1 [lrange [GiD_Info mesh nodes $n1] 1 end] set c2 [lrange [GiD_Info mesh nodes $n2] 1 end] set dist [::MathUtils::VectorDistance $c1 $c2] set force [expr {$dist*$pressure*0.5}] if { [info exists F($n1)] } { set F($n1) [expr {$F($n1)+$force} ] =3D20 } else { set F($n1) $force } if { [info exists F($n2)] } { set F($n2) [expr {$F($n2)+$force} ] =3D20 } else { set F($n2) $force } } set result "LOAD
" append result "Node F
" foreach node [array names F] { append result "$node $F($node)
" } ! return $result }
Many thanks in advance,
Benedictus Benny PO
Message: 4From: "Enrique Escolano" <...
[GiDlist] GiD beta 7.5.0b
Send by: Benedictus Benny Po Hallo Enrique, Could you send me the new attached file "command.zip" for fixing bug in GiD beta 7.5.0b. Is it really necessary to change the file command.exe with the new one if I don't notice sofar any bug in running this GiD beta 7.5.0b in my computer ? Anyway for safety reason I prefer to change it as you said. PS: I'm not sure if my mail server could receive this zip file from you due to last time experience. Best Regard Benny --------------------------------- Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage ! Créez votre Yahoo! Mail Le nouveau Yahoo! Messenger est arrivé ! Découvrez toutes les nouveautés pour dialoguer instantanément avec vos amis.Téléchargez GRATUITEMENT ici ! -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] GiD beta 7.5.0b
Send by: Enrique Escolano You only need to have the appropiated command.exe if you use the button "Calculate" to start an analysis. You can download the next 7.5.1b, including this and other small corrections. In other hand, if you don't want to download the last version, I attach this zip. Enrique ----- Original Message ----- From: Benedictus Benny Po To: gidlist at gatxan.cimne.upc.es Sent: Thursday, November 11, 2004 12:54 AM Subject: [GiDlist] GiD beta 7.5.0b Hallo Enrique, Could you send me the new attached file "command.zip" for fixing bug in GiD beta 7.5.0b. Is it really necessary to change the file command.exe with the new one if I don't notice sofar any bug in running this GiD beta 7.5.0b in my computer ? Anyway for safety reason I prefer to change it as you said. PS: I'm not sure if my mail server could receive this zip file from you due to last time experience. Best Regard Benny ------------------------------------------------------------------------------ Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage ! Créez votre Yahoo! Mail Le nouveau Yahoo! Messenger est arrivé ! Découvrez toutes les nouveautés pour dialoguer instantanément avec vos amis. Téléchargez GRATUITEMENT ici ! -------------- next part -------------- An HTML attachment was scrubbed... URL: ... [GiDlist] html help bug / feature
Send by: Mark Smith Win2000, GiD ver 6.3.0b & 7.5.1b Hi GiD team I have written a custom help for an application which includes animated gifs and hyperlinks to websites in a reference section, these both work when viewed with an external browser but not with GiDs browser? Is it possible to set the default of Help of always on top to be unchecked rather than checked? Regards mark -- Outgoing mail is certified Virus Free. Checked by AVG Anti-Virus (http://www.grisoft.com). Version: 7.0.279 / Virus Database: 264.12.8 - Release Date: 07/11/2004 The information contained in this e-mail message (and any attachment transmitted herewith) is privileged and confidential and is intended for the exclusive use of the addressee(s). If you are not an addressee, any disclosure, reproduction, distribution or other dissemination or use of this communication is strictly prohibited. If you have received this communication in error, please contact us immediately so that we can correct the error. ... [GiDlist] html help bug / feature
Send by: Enrique Escolano Animated gifs are not supported by the GiD help browser, and hyperlinks are tried to be opened with the default external browser. About to unset 'always on top' by default for this GiD browser, it seems better (maybe for the next beta). Regards Enrique Escolano ----- Original Message ----- From: "Mark Smith" <mark.smith at linx.co.uk> To: "Gidlist (E-mail)" <gidlist at gatxan.cimne.upc.es> Sent: Thursday, November 11, 2004 11:40 AM Subject: [GiDlist] html help bug / feature >... [GiDlist] Open Units from a Toolbad and .mat file with BOOK:
Send by: Andrea Calaon Hello everyone, I was wandering if there is a Tcl command which could be used to open the Units dialog form a toolbar, an analogous of [list -np- GidOpenConditions "..."] ? I haven't found anything in the GiD scripts. A second question: Is there in any problem type a WIDGET which could be used to restrain the Material assignment to one kind of geometrical entities only (Volumes, Surfaces, Lines, Points) which works with a .mat file using BOOKs? Thanks for any suggestions Have a nice day! Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Homepage: http://mailserver1.wessex.ac.uk/~acalaon... [GiDlist] Open Units from a Toolbad and .mat file with BOOK:
Send by: ronda Hi On Friday 12 November 2004 11:07, Andrea Calaon wrote: > Hello everyone, > I was wandering if there is a Tcl command which could be used to open the > Units dialog form a toolbar, an analogous of > [list -np- GidOpenConditions "..."] ? > > I haven't found anything in the GiD scripts. > You can use this proc: DWDataUnits > A second question: > Is there in any problem type a WIDGET which could be used to restrain the > Material assignment to one kind of geometrical entities only (Volumes, > Surfaces, Lines, Points) which works with a .mat file using BOOKs? ... [GiDlist] Open Units from a Toolbad and .mat file with BOOK:
Send by: Andrea Calaon Thanks for the precious help!! Regards On 12 Nov 2004 at 12:57, ronda wrote: > > DWDataUnits > > > yes, you can use proc GiD_DataBehaviour, here I paste the internal doc of the > command: > Andrea Calaon Ashurst Lodge, Ashurst Southampton, Hampshire SO40 7AA, UK Tel. office: +44 23 80 293 223 Fax office: +44 23 80 292 853 Mobile: +44 7766 488 225 E-mail: andrea at beasy.com [GiDlist] assign condition
Send by: qi qlfm I found it's very frustrating. Maybe because I didn't wrong operation. I have a hollow cylinder, I just want assign all outer surface of cyliner fixed. I use condition command from menu, there's an option, I select "assgin" I find I cann't select the outer surface of the hollow cyliner. Either I select the whole cylinder or I only select some of it. I cann't specify the outer surface. Could you give me some suggestions? I really appreciate it. regards, Mark _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.com/... [GiDlist] assign condition
Send by: Enrique Escolano Can you in general to select surfaces? (inside a selection in normal render, must click the pink lines) How is defined the condition to be applied: It's a condition "over surfaces"? Are your working with your own problemtype, or a standard one? You must assign the condition over the surfaces, and then generate the mesh. Do not apply directly over the mesh entities if it's possible. Enrique Escolano ----- Original Message ----- From: "qi qlfm" <qlfm at hotmail.com> To: <gidlist at gatxan.cimne.upc.es... [GiDlist] About .lin file
Send by: Mark qlfm Hi,Enrique: Thank for your kind help. Hope this time I don't bother you much *_^. I export my cylinder gid file to a ASCII file. I found a " .lin" file, which includes condition and load information. I check the mailing list, it seems you suggest we write a template file instead of ".lin". However, in my case, I prefer the ".lin". I think template file is a little complicated. In my case, I just want to know which elements are fixd, and which elements are applied a pressure. And I read "*.lin" file, I think it includes the information I am interested in. But some parts of it I cann't figure them out. below is the beginning of this .lin file " 1 0 1 0 0 2 0 0 3 4 6 1 1 1 1 1 1 0 3 -1 6 1 1 1 1 1 1 120 -1 6 1 1 1 1 1 1 ..... " what does the beginning number meaning? I think the " 1 1 1 1 1 1" represent the 6 freedom, that I fixed. but what meaning of the very beginning number? what the meaning of the number just before the " 1 1 1 1 1 1"? Are they the element number? and in the middle of this .lin file, there's a part as following " 4 0 0 5 0 0 6 3 1 258.0 0 40 1 1 258.0 12 4 1 258.0 78 3 1 258.0 43 1 1 258.0 11 4 1 258.0 77 3 1 258.0 38 1 1 258.0 26 1 1 258.0 2 4 1 258.0 41 1 1 258.0 " the number 258 is the prssure I applied on the one of the surfaces of the cyliner. but what the meaning of number before the pressure? I really appreciate your kind help. And Thanks a lot, Mark _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! ... [GiDlist] About .lin file
Send by: Ramon Ribó Mark, My advice is not to use the .lin file, as it is not documented and can change over time. Get one of the demo problemtypes or one of the Internet Retrieve modules, and you will see that it is fairly easy to modify it to suit to your needs. Regards, -- Compass Ing. y Sistemas Dr. Ramon Ribo http://www.compassis.com ramsan at compassis.com c/ Manuel Girona, 61 bajos tel. +34 93 204 10 82 08034 Barcelona, Spain fax. +34 93 204 19 09 -----Mensaje original----- De: gidlist-admin at gatxan.cimne.upc.es... [GiDlist] Gid7.4.3b with Win 2000: Problems with listing nodes or elements
Send by: Johannes Ackva Hi I have 2 problems when making "Utilities - List - nodes or elements": 1) it is very slow. When pressing escape it needs about 5 seconds with 600 nodes to have them marked on the screen and to appear the List Entities Window. Until I have the limited evaluation version but what will be with a 100000 nodes-model?! Is there a way to change this behaviour? 2) Making lists, sometimes GiD crashes when releasing the mouse button. How to avoid this? I did already deinstall und reinstall. Thank You in advance for Your suggestions Best regards, Johannes Ackva ______________________________________________________________________ Ingenieurbüro für Mechanik Dr.-Ing. Johannes Ackva Markgrafenstr. 21 D 91717 Wassertrüdingen ... [GiDlist] Gid7.4.3b with Win 2000: Problems with listing nodes or elements
Send by: Enrique Escolano The list tool is not designed to list a big amount on entities (maybe can be enhanced for next versions). Usually it must be only used to check some entities. To list all mesh, it's best for example to export as a "Text data report" ascii file, and open it with some text editor. About the crash when select entities: What GiD version do you use? (If you use a version lower than 7.5.1b, download this last beta version). If the problem persists with this last beta version, and you can repeat this problem, please, send us a brief explanation about how to crash GiD, to solve it. Regards Enrique ----- Original Message ----- From: "Johannes Ackva" <... [GiDlist] Is it posible to remove some elements at the post prossesing?
Send by: De silva mahinda An HTML attachment was scrubbed... URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20041116/36e505a3/attachment.htm [GiDlist] Is it posible to remove some elements at the post prossesing?
Send by: Miguel A. Pasenau de Riera You can do it in this way: define an elemental property, like 'existence', on the elements which remain on every step. So: do not define this results for the elements that are to be removed, and so, when you do a c.fill. of this results, the elements which do not have the result will not be drawn. i send you enclosed an example: excavacion.msh, excavacion.res and a movie file: excavacion.mpg Hope it helps, miguel _____ De: gidlist-admin at gatxan.cimne.upc.es [mailto:gidlist-admin at gatxan.cimne.upc.es... [GiDlist] Post Processing
Send by: Benedictus Benny Po Dear GiD's Team,
If I want to visualize with Contour Fill, beside defining the Contour Limit i.e max. value und min. value, is it also possible to define the number of division between the range ? For example, I have defined max = 1e9 and min = 5.5e7, GiD makes contour automatically with 10 Division between max. and min., no matter how many number of colours I have entered in Contour Colours and these 10 Divisions are always the same :
from 1). 1e+09,
2). 8.9e+08
3).7.9e+8
4).6.8e+8
5).5.8e+08
6).4.7e+08
7).3.7e+08
8).2.6e+08
9).1.6e+08
to 10).5.5e+07
Is it possible to make a division more than 10 let's say 15.????
Thanks in advance,
Benedictus Benny PO
---------------------------------
Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage !
Créez votre Yahoo! Mail
Le nouveau Yahoo! Messenger est arrivé ! Découvrez toutes les nouveautés pour dialoguer instantanément avec vos amis.Téléchargez GRATUITEMENT ici !
-------------- next part --------------
An HTML attachment was scrubbed...
URL: ...
[GiDlist] Post Processing
Send by: Enrique Escolano At this moment it's not possible to set this number of scale labels. Enrique Escolano ----- Original Message ----- From: Benedictus Benny Po To: gidlist at gatxan.cimne.upc.es Sent: Wednesday, November 17, 2004 10:21 PM Subject: [GiDlist] Post Processing Dear GiD's Team, If I want to visualize with Contour Fill, beside defining the Contour Limit i.e max. value und min. value, is it also possible to define the number of division between the range ? For example, I have defined max = 1e9 and min = 5.5e7, GiD makes contour automatically with 10 Division between max. and min., no matter how many number of colours I have entered in Contour Colours and these 10 Divisions are always the same : from 1). 1e+09, 2). 8.9e+08 3).7.9e+8 4).6.8e+8 5).5.8e+08 6).4.7e+08 7).3.7e+08 8).2.6e+08 9).1.6e+08 to 10).5.5e+07 Is it possible to make a division more than 10 let's say 15.???? Thanks in advance, Benedictus Benny PO ------------------------------------------------------------------------------ Créez gratuitement votre Yahoo! Mail avec 100 Mo de stockage ! Créez votre Yahoo! Mail Le nouveau Yahoo! Messenger est arrivé ! Découvrez toutes les nouveautés pour dialoguer instantanément avec vos amis. Téléchargez GRATUITEMENT ici ! -------------- next part -------------- An HTML attachment was scrubbed... URL: ... |