Page 2 of 3

[GiDlist] Node Numbering convention in GiD

Posted: Thu Aug 08, 2002 8:32 pm
by Enrique Escolano
Note about the element conectivites:
The element can be located in any position in 3D (not necessary parallel to
xyz axis as in the pictures of the manual).

The normal of a quadrilateral is the same as the normal of the source
surface, check this normals
(the normals can be drawn and swapped)

By defaul in GiD, if a surface is created in a plane parallel to XY, then
your normal point automatically to the +Z axis,
and the local numeration of a quadrilateral generated 1 2 3 4 is
anti-clockwise.

Enrique Escolano

----- Original Message -----
From: "Miguel A. de Riera Pasenau" miguel at cimne.upc.es
To: gidlist at gatxan.cimne.upc.es
Sent: Wednesday, July 31, 2002 12:19 PM
Subject: Re: [GiDlist] Node Numbering convention in GiD


hi,
the conectivities are the ones described in:

http://gid.cimne.com/support/gid_16.subst#cuad4.gif
http://gid.cimne.com/support/gid_16.subst#cuad8.gif
http://gid.cimne.com/support/gid_16.subst#cuad9.gif

you can also create a quadratic quadrilateral mesh
example in gid(pre), do a label all nodes and
list one of the elements (utilities-list-elements)
and you'll get the ordering of the nodes in gid.
i think this match with your description, or not?

miguel

Vilaysak Sayakoummane wrote:

Hi Guys
If any of you happened to know about node numbering
convention for element connectivity in GiD..especially
for 4 node and 8 node shell element..I'm still
confused with that..My previous FEM is such:

.s .s
2............1 2....5.....1
. . . . . .
. .........r 6. .....8...r
. . . .
3............4 3....7.....4
4 node 8 node
How we could make it satisfied with our own previous
Convention??

Thanks

__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist

--
--------------------------------------------------------------------------
------
Miguel A. de Riera Pasenau miguel at cimne.upc.es
http://gid.cimne.upc.es
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist


[GiDlist] Re: [GiDlist]New Menu

Posted: Fri Aug 09, 2002 4:13 pm
by Miguel A. de Riera Pasenau
This is what you mean?

http://gid.cimne.com/support/gid_17.subst#SEC255
(look at the 'InsertMenuOption' paragraph)

hope it helps

miguel


Vilaysak Sayakoummane wrote:

Hi
Thank Miguel for your last reply. YOu didn't get my
point but your reply is so valuable anyway. I attached
file for you so that you may understand how I would
like to do..

Best regards

__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com

------------------------------------------------------------------------------------------------------------------------------------
Name: New Problemtype menu.zip
New Problemtype menu.zip Type: Zip Compressed Data (application/x-zip-compressed)
Encoding: base64
Description: New Problemtype menu.zip

--
--------------------------------------------------------------------------------
Miguel A. de Riera Pasenau miguel at cimne.upc.es http://gid.cimne.upc.es
-------------- next part --------------
A non-text attachment was scrubbed...
Name: TclTkExample.tgz
Type: application/x-tgz-compressed
Size: 77880 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20020809/adef4d2a/attachment.bin

[GiDlist] Re: [GiDlist]New Menu

Posted: Fri Aug 09, 2002 4:27 pm
by Miguel A. de Riera Pasenau
This is what you mean? look at the attached example

http://gid.cimne.com/support/gid_17.subst#SEC255
(look at the 'InsertMenuOption' paragraph)

hope it helps

miguel


Vilaysak Sayakoummane wrote:

Hi
Thank Miguel for your last reply. YOu didn't get my
point but your reply is so valuable anyway. I attached
file for you so that you may understand how I would
like to do..

Best regards

__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com

------------------------------------------------------------------------------------------------------------------------------------
Name: New Problemtype menu.zip
New Problemtype menu.zip Type: Zip Compressed Data (application/x-zip-compressed)
Encoding: base64
Description: New Problemtype menu.zip

--
--------------------------------------------------------------------------------
Miguel A. de Riera Pasenau miguel at cimne.upc.es http://gid.cimne.upc.es
-------------- next part --------------
A non-text attachment was scrubbed...
Name: TclTkExample.tgz
Type: application/x-tgz-compressed
Size: 77880 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20020809/9d0d76db/attachment.bin

[GiDlist] Re: [GiDlist]New Menu

Posted: Mon Aug 12, 2002 4:03 am
by Vilaysak Sayakoummane
Hi there
Thank Miguel for your reply. I'll try it as you
adviced,especially I have to look on TclTk part
deeply.

Another small thing I would like to ask again is:

in my Problemtype.bas file I used *CondNumEntities
to get number of nodes that assigned Loads on it. When
I assigned the different loads on the same one node
then I get number of Point load equals only 1. For
example, on node #53 I assigned Load Fx=10, Fy=20,
Mx=45,My=60 then my data file result is:
Number of Point Load = 1 (usually should be 4)
Node number Fx Fy Fz Mx My Mz
53 10 20 0 45 60 0
I try to use *set cond Point_Load *CanRepeat but I
didn't get the number of Laods equals 4.
How can we solve this problem?? I am sure that it
should be some command to deal with this??

Regards.

__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com

[GiDlist] Re: [GiDlist]New Menu

Posted: Mon Aug 12, 2002 10:47 am
by Enrique Escolano
*condnumentities count the number of entities with an applied contition, and Fx, Fy, ... are fields of the same condition

Use an auxiliary loop to count the number of fields with not zero value
example: (for a condition named Point-Load, and fields named Fx, Fy, etc)

*set var cont=0
*set cond Point-Load *nodes *canrepeat
*loop nodes onlyincond
*if(cond(Fx,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(Fy,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(Fz,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(Mx,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(My,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(Mz,real)!=0)
*set var cont=operation(cont+1)
*endif
*end nodes
Nº total= *cont

Regards
Enrique Escolano

----- Original Message -----
From: "Vilaysak Sayakoummane" vilaysako at yahoo.com
To: gidlist at gatxan.cimne.upc.es
Sent: Monday, August 12, 2002 5:01 AM
Subject: Re: [GiDlist] Re: [GiDlist]New Menu


Hi there
Thank Miguel for your reply. I'll try it as you
adviced,especially I have to look on TclTk part
deeply.

Another small thing I would like to ask again is:

in my Problemtype.bas file I used *CondNumEntities
to get number of nodes that assigned Loads on it. When
I assigned the different loads on the same one node
then I get number of Point load equals only 1. For
example, on node #53 I assigned Load Fx=10, Fy=20,
Mx=45,My=60 then my data file result is:
Number of Point Load = 1 (usually should be 4)
Node number Fx Fy Fz Mx My Mz
53 10 20 0 45 60 0
I try to use *set cond Point_Load *CanRepeat but I
didn't get the number of Laods equals 4.
How can we solve this problem?? I am sure that it
should be some command to deal with this??

Regards.

__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20020812/0eb6df59/attachment.htm

[GiDlist] Thanks

Posted: Mon Aug 12, 2002 11:37 am
by Vilaysak Sayakoummane
Hi Enrique
Thanks so much for your immediate reply. I got
ideas from your advice and I'll apply to other
problems too.
Many thanks..

--- Enrique Escolano escolano at cimne.upc.es wrote:
*condnumentities count the number of entities with
an applied contition, and Fx, Fy, ... are fields of
the same condition

Use an auxiliary loop to count the number of fields
with not zero value
example: (for a condition named Point-Load, and
fields named Fx, Fy, etc)

*set var cont=0
*set cond Point-Load *nodes *canrepeat
*loop nodes onlyincond
*if(cond(Fx,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(Fy,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(Fz,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(Mx,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(My,real)!=0)
*set var cont=operation(cont+1)
*endif
*if(cond(Mz,real)!=0)
*set var cont=operation(cont+1)
*endif
*end nodes
Nº total= *cont

Regards
Enrique Escolano

----- Original Message -----
From: "Vilaysak Sayakoummane" vilaysako at yahoo.com
To: gidlist at gatxan.cimne.upc.es
Sent: Monday, August 12, 2002 5:01 AM
Subject: Re: [GiDlist] Re: [GiDlist]New Menu


Hi there
Thank Miguel for your reply. I'll try it as you
adviced,especially I have to look on TclTk part
deeply.

Another small thing I would like to ask again is:

in my Problemtype.bas file I used
*CondNumEntities
to get number of nodes that assigned Loads on it.
When
I assigned the different loads on the same one
node
then I get number of Point load equals only 1. For
example, on node #53 I assigned Load Fx=10, Fy=20,
Mx=45,My=60 then my data file result is:
Number of Point Load = 1 (usually should be 4)
Node number Fx Fy Fz Mx My Mz
53 10 20 0 45 60 0
I try to use *set cond Point_Load *CanRepeat but
I
didn't get the number of Laods equals 4.
How can we solve this problem?? I am sure that it
should be some command to deal with this??

Regards.

__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist




__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com

[GiDlist] Re: [GiDlist]New Menu

Posted: Tue Aug 13, 2002 1:14 pm
by Ramon Ribó
Hello,

Check options:

CANREPEAT: yes

in .cnd file

and *CanRepeat in .bas file

Regards,

--
Compass Ing. y Sistemas Dr. Ramon Ribó
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
[mailto:gidlist-admin at gatxan.cimne.upc.es]En nombre de Vilaysak
Sayakoummane
Enviado el: lunes, 12 de agosto de 2002 5:02
Para: gidlist at gatxan.cimne.upc.es
Asunto: Re: [GiDlist] Re: [GiDlist]New Menu


Hi there
Thank Miguel for your reply. I'll try it as you
adviced,especially I have to look on TclTk part
deeply.

Another small thing I would like to ask again is:

in my Problemtype.bas file I used *CondNumEntities
to get number of nodes that assigned Loads on it. When
I assigned the different loads on the same one node
then I get number of Point load equals only 1. For
example, on node #53 I assigned Load Fx=10, Fy=20,
Mx=45,My=60 then my data file result is:
Number of Point Load = 1 (usually should be 4)
Node number Fx Fy Fz Mx My Mz
53 10 20 0 45 60 0
I try to use *set cond Point_Load *CanRepeat but I
didn't get the number of Laods equals 4.
How can we solve this problem?? I am sure that it
should be some command to deal with this??

Regards.

__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist

[GiDlist] HOw to select a face of a Solid element

Posted: Wed Aug 14, 2002 12:12 pm
by Vilaysak Sayakoummane
Hi there
Please give your advice!!!
I'm working on "Pressure Load" for Solid element.
How can we have GiD to select the Face of the solid
element??is there any possibility? in my file .cnd, I
used
CONDTYPE:over surfaces
but when selecting the element it was selected as a
whole element not a surface (or face of element). How
we deal with this kinda problem?

Best regards.

__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com

[GiDlist] Re: [GiDlist]New Menu

Posted: Mon Aug 26, 2002 4:02 pm
by Vilaysak Sayakoummane
Hi all GiDs
I have problem with GiD.7 when trying to write the
CalFile. I have no problem when using with GiD6.2 but
when transferring my ProblemType to GiD.7 I noticed
that so many options included.
In problemType_name.mat, in GiD.7 allows only 100
fields. Actually my fields (QUESTION:) are more than
100. My question is:
1. Do you have any option to ovoid this limitation?
2. In case I have more fields in this
ProblemType_name.mat file. Can GiD allow to have more
than 1 file of ProblemType_name.mat file?
3. If not from two listed above how should we solve
this problem?

Best regards.


__________________________________________________
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com

[GiDlist] Field limitation of mat file in GiD.7 Why?

Posted: Tue Aug 27, 2002 3:09 am
by Vilaysak Sayakoummane
Hi GiD Team
I transferred my ProblemType_name.gid to GiD.7 but
in this version it said that Too many fields in mat
file, 100 fields are limited.Then some fields are not
recognized when writing the .bas file? I use Pro
Version and still got the same problem.

Why? there should be some limitation?

Regards

__________________________________________________
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com