[GiDlist] Coordinates of the direction of observation in GID

Moderator: GiD Team

Pablo Perez del Castillo

[GiDlist] arrays in tcl

Post by Pablo Perez del Castillo »

Hello;
How Enrique note, if it use ".central.s info listmassproperties lines
"line number"", it is fater and easy. But you can tell me how many
points use GID to calculate the lenght?, i am using profiles similar to
NACA.
Thanks again

Another question;
I created a new menu, and it has a jpg pic, i had a lot of troubles to
get it, at the end i used the sample "coils", and i got it. Anybody can
explain me when declarate $dir in the next proc?


proc InitGIDProject { dir } {

CreateMenu "ToolSail" "PRE"
InsertMenuOption "ToolSail" "Section Sail" 0 "SectionSail \"$dir\""
"PRE"
UpdateMenus
}

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20030104/95624935/attachment.htm
VSayako Willy

[GiDlist] Create ICON from GiD.

Post by VSayako Willy »

Happy New year to all of GiDListers!!!!

I tried to create the ICONS from GiD. I got the
ICONs but I got trouble with its sizes.

How we fix the size of those ICONS?? Do we have to
specify the size of the ICON.gif from the xxxx.gif
software source??

Regards.

__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
Enrique Escolano

[GiDlist] arrays in tcl

Post by Enrique Escolano »

1) The length of a parametric Nurbs line is calculated inside GiD, foreach interval between "knots", with a Gauss-Legendre numerical integration rule of 8 points. (it is not calculated as a simple piecewise linear interpolation)

2) To use the value $dir provided by the InitGIDProject procedure in anoter procedure, you can store the value in a global variable,
for example:
proc InitGIDProject { dir } {
global PabloPriv
set PabloPriv(directory) $dir
}

proc AnotherProc { } {
global PabloPriv
WarnWinText "The value of dir is $PabloPriv(directory)"
}

Regards
Enrique Escolano

----- Original Message -----
From: Pablo Perez del Castillo
To: gidlist at gatxan.cimne.upc.es
Sent: Saturday, January 04, 2003 8:31 PM
Subject: Re: [GiDlist] arrays in tcl


Hello;
How Enrique note, if it use ".central.s info listmassproperties lines "line number"", it is fater and easy. But you can tell me how many points use GID to calculate the lenght?, i am using profiles similar to NACA.
Thanks again
Another question;
I created a new menu, and it has a jpg pic, i had a lot of troubles to get it, at the end i used the sample "coils", and i got it. Anybody can explain me when declarate $dir in the next proc?


proc InitGIDProject { dir } {

CreateMenu "ToolSail" "PRE"
InsertMenuOption "ToolSail" "Section Sail" 0 "SectionSail \"$dir\"" "PRE"
UpdateMenus
}


-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20030107/16b6a754/attachment.htm
Enrique Escolano

[GiDlist] Create ICON from GiD.

Post by Enrique Escolano »

Where is trying to put the *.gif image: In a toolbar ? in the conditions or
materials window? ...
For example, in the toolbars, the "standard" gifs used by GiD are of 24x24
pixels, but this size is arbitrary.

----- Original Message -----
From: "VSayako Willy" vilaysako at yahoo.com
To: gidlist at gatxan.cimne.upc.es
Sent: Tuesday, January 07, 2003 4:02 AM
Subject: [GiDlist] Create ICON from GiD.



Happy New year to all of GiDListers!!!!

I tried to create the ICONS from GiD. I got the
ICONs but I got trouble with its sizes.

How we fix the size of those ICONS?? Do we have to
specify the size of the ICON.gif from the xxxx.gif
software source??

Regards.

__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist

Post Reply