Page 1 of 1

[GiDlist] RealFormat

Posted: Tue Jul 08, 2003 9:04 am
by NUNIO Francois DAPNIA
Hello,

I have a problem with the node coordinate output (random shift of the
column) when I use the format command :

Gid *.bas file (partial) :

...
...
*RealFormat "%22.14E"
*loop nodes
*NodesCoord(1,real)
*NodesCoord(2,real)
*endif
*end nodes
...
...

Output (partial) :
...
...
8.93893535425073E+01
-5.94093577063217E+00
-1.50000000000000E+00
8.42523817128309E+01
-4.56193076496659E+00
-1.50000000000000E+00
8.21569253738304E+01
1.22646133016995E+01
-1.50000000000000E+00
8.61009970470839E+01
-6.87078553039366E+00
-1.50000000000000E+00
8.05839756925027E+01
-3.16789659893504E+00
-1.50000000000000E+00
8.85163594431580E+01
-7.74133767712196E+00
...
...

What's wrong with my template file ?

Regards,

François
___________________________________
François NUNIO
CEA-Saclay
DSM/DAPNIA/SIS/LCAP
Bât. 123 - 91191 Gif-Sur-Yvette cedex
Tel : 0169082391 / Fax : 0169088138

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20030708/919929ec/attachment.htm

[GiDlist] RealFormat

Posted: Tue Jul 08, 2003 10:08 am
by Enrique Escolano
RealFormatThis is a corrected bug.

Update to the last GiD7.4.2b beta version.

Enrique Escolano.
----- Original Message -----
From: NUNIO Francois DAPNIA
To: 'gidlist at gid.cimne.upc.es'
Sent: Tuesday, July 08, 2003 10:01 AM
Subject: [GiDlist] RealFormat


Hello,

I have a problem with the node coordinate output (random shift of the column) when I use the format command :

Gid *.bas file (partial) :

...
...
*RealFormat "%22.14E"
*loop nodes
*NodesCoord(1,real)
*NodesCoord(2,real)
*endif
*end nodes
...
...

Output (partial) :
...
...
8.93893535425073E+01
-5.94093577063217E+00
-1.50000000000000E+00
8.42523817128309E+01
-4.56193076496659E+00
-1.50000000000000E+00
8.21569253738304E+01
1.22646133016995E+01
-1.50000000000000E+00
8.61009970470839E+01
-6.87078553039366E+00
-1.50000000000000E+00
8.05839756925027E+01
-3.16789659893504E+00
-1.50000000000000E+00
8.85163594431580E+01
-7.74133767712196E+00
...
...

What's wrong with my template file ?

Regards,

François
___________________________________
François NUNIO
CEA-Saclay
DSM/DAPNIA/SIS/LCAP
Bât. 123 - 91191 Gif-Sur-Yvette cedex
Tel : 0169082391 / Fax : 0169088138
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20030708/d7521248/attachment.htm

[GiDlist] assign condition automatically

Posted: Tue Jul 08, 2003 10:43 am
by Malte Neumann
Hi,

Some weeks ago I read on this list about assigning conditions automatically
before meshing. I now read through most of the documentation and could not
find a clue how to do this.

Can anybody please explain how to do this or where to find an explanation.

Thanks in advance

Malte


--
--------------------------------------------------------------------------
Malte Neumann
--------------------------------------------------------------------------
Institut fuer Baustatik / Institute of Structural Mechanics
Prof. Dr.-Ing. Ekkehard Ramm
Universitaet Stuttgart / University of Stuttgart

Pfaffenwaldring 7, D-70550 Stuttgart, Germany

mailto:malte.neumann at statik.uni-stuttgart.de phone: ++49-711-685-6121
http://www.uni-stuttgart.de/ibs/members/neumann/ fax: ++49-711-685-6130
--------------------------------------------------------------------------

[GiDlist] assign condition automatically

Posted: Tue Jul 08, 2003 12:39 pm
by Enrique Escolano
The last beta version 7.4.2b has two new tcl events raised by GiD (not included in the documentation by now):
proc BeforeMeshGeneration { size } and proc AfterMeshGeneration { fail }
This procedures are similar to InitGidProject, tipically used by a problemtype to change menus, etc.

This tcl procedures can be overwritten by a problemtype to make some action, for example, assign automatically
a condition to some entities before mesh:

To test this events, create a problemtype.tcl file with this procedures:
(and also a problemtype.cnd with a condition named "MyCond" with two fields)

proc BeforeMeshGeneration { size } {
WarnWinText "BeforeMeshGeneration $size"
#assign a condition named "MyCond" with field values "valueA" and "ValueB" to all entities (from number 1 to last)
.central.s process escape escape escape escape data cond assign Mycond valueA valueB 1: escape
}

proc AfterMeshGeneration { fail } {
WarnWinText "AfterMeshGeneration $fail"
}

Regards
Enrique Escolano

----- Original Message -----
From: "Malte Neumann" neumann at statik.uni-stuttgart.de
To: gidlist at gatxan.cimne.upc.es
Sent: Tuesday, July 08, 2003 11:42 AM
Subject: [GiDlist] assign condition automatically


Hi,

Some weeks ago I read on this list about assigning conditions automatically
before meshing. I now read through most of the documentation and could not
find a clue how to do this.

Can anybody please explain how to do this or where to find an explanation.

Thanks in advance

Malte


--
--------------------------------------------------------------------------
Malte Neumann
--------------------------------------------------------------------------
Institut fuer Baustatik / Institute of Structural Mechanics
Prof. Dr.-Ing. Ekkehard Ramm
Universitaet Stuttgart / University of Stuttgart

Pfaffenwaldring 7, D-70550 Stuttgart, Germany

mailto:malte.neumann at statik.uni-stuttgart.de phone: ++49-711-685-6121
http://www.uni-stuttgart.de/ibs/members/neumann/ fax: ++49-711-685-6130
--------------------------------------------------------------------------

_______________________________________________
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/20030708/4633a3c0/attachment.htm

[GiDlist] frame around window in movies

Posted: Wed Jul 09, 2003 3:03 pm
by Michael Gee
Dear mailing list users,
when producing a movie from gid, gid adds a colored frame around the
graphics window.
can this fram be influenced in thickness in color, and if, where do I
find this in the gid menus?
Thank You very much in advance, Michael Gee

--
----------------------------------------------------------------------
Michael Gee
----------------------------------------------------------------------
Institut fuer Baustatik / Institute of Structural Mechanics
Prof. Dr.-Ing. Ekkehard Ramm
Universitaet Stuttgart / University of Stuttgart

Pfaffenwaldring 7
D-70550 Stuttgart

Tel +711-685-6572
Fax +711-685-6130
mail gee at statik.uni-stuttgart.de
http://www.uni-stuttgart.de/ibs/members/gee/

how to find me:
http://www.stadtplandienst.de/query;ORT=s;LL=%2B48.747858%2B9.108325;GR=2
----------------------------------------------------------------------


-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20030709/18e8b090/attachment.htm

[GiDlist] frame around window in movies

Posted: Wed Jul 09, 2003 5:08 pm
by Enrique Escolano
GiD not adds any colored frame to your movies (avi, mpg, ...).
It's can be a setting of your animation player program.

Enrique Escolano
----- Original Message -----
From: Michael Gee
To: gidlist at gatxan.cimne.upc.es
Sent: Wednesday, July 09, 2003 4:02 PM
Subject: [GiDlist] frame around window in movies


Dear mailing list users,
when producing a movie from gid, gid adds a colored frame around the graphics window.
can this fram be influenced in thickness in color, and if, where do I find this in the gid menus?
Thank You very much in advance, Michael Gee
--
----------------------------------------------------------------------
Michael Gee
----------------------------------------------------------------------
Institut fuer Baustatik / Institute of Structural Mechanics
Prof. Dr.-Ing. Ekkehard Ramm
Universitaet Stuttgart / University of Stuttgart


Pfaffenwaldring 7
D-70550 Stuttgart

Tel +711-685-6572
Fax +711-685-6130
mail gee at statik.uni-stuttgart.de
http://www.uni-stuttgart.de/ibs/members/gee/

how to find me:
http://www.stadtplandienst.de/query;ORT=s;LL=%2B48.747858%2B9.108325;GR=2
----------------------------------------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20030709/4b6ad1b9/attachment.htm

[GiDlist] Select "Layer" by righ mouse click no longer avail

Posted: Thu Jul 10, 2003 6:21 pm
by kenji furui
Dear GiD members,

I've just installed GiD ver7.4.2b. (Windows)
I couldn't find "Layer" selection by a right mouse
click , which was supported in the previous versions.
I'm just wondering if this is a bug or something.
If this is the new feature, please disregard this
message.

thanks,

Kenji Furui
U. of Texas at Austin
Dept. of Petroleum & Geosystems Eng.


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

[GiDlist] Select "Layer" by righ mouse click no longer avail

Posted: Thu Jul 10, 2003 7:38 pm
by Enrique Escolano
This Layer menu is removed to test if can exists a relation between this
menu and a known bug (upper menu locked),
as related in a FAQ:
"With the OS Microsoft Windows, sometimes exists a conflict with the menu
bar, and they remain blocked.
It is possible to unlock the menu bar without restarting GiD, by using the
keyboard shortcuts (e.g. Alt+f, to invoke the Files menu)."

For future beta versions, this menu can be restored.

Enrique Escolano

----- Original Message -----
From: "kenji furui" petrocowboy at yahoo.com
To: gidlist at gatxan.cimne.upc.es
Sent: Thursday, July 10, 2003 7:20 PM
Subject: [GiDlist] Select "Layer" by righ mouse click no longer available?


Dear GiD members,

I've just installed GiD ver7.4.2b. (Windows)
I couldn't find "Layer" selection by a right mouse
click , which was supported in the previous versions.
I'm just wondering if this is a bug or something.
If this is the new feature, please disregard this
message.

thanks,

Kenji Furui
U. of Texas at Austin
Dept. of Petroleum & Geosystems Eng.


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist