[GiDlist] Can I get the time consuming to generate mesh?

Moderator: GiD Team

Post Reply
CHEN Ningning

[GiDlist] Can I get the time consuming to generate mesh?

Post by CHEN Ningning »

Hi,

Can I get the time which used to generate mesh?
How can I do?


        CHEN Ningning
        xjtucnn at 163.com
          2010-05-14
Lluis Mesquida

[GiDlist] can't read "goux"

Post by Lluis Mesquida »

Hi, I'm using Tdyn 10.3.0

I have a problem when i try to lunch Calculations in a model which I have Termal (solid and fluid), advection (solid and fluid) an fluid Flow.

When i try to launch the calculation after meshing, occurs a problem with this message:

Error when preparing data for analisys can't read "goux". no such variable.

I don't know what could be the problem, becuase in other examples without advection the same problem run without problems.

Anybody knows why i can't run all this toghether?

_________________________________________________________________
Recibe en tu HOTMAIL los emails de TODAS tus CUENTAS. + info
http://www.vivelive.com/hotmail-la-gente-de-hoy/index.html?multiaccount
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20100514/1c5425f9/attachment.htm
Daniel Sa

[GiDlist] can't read "goux"

Post by Daniel Sa »

Hello Lluis,
Please download the latest Tdyn version (10.3.2b) from our web (
http://www.compassis.com/compass/en/Productos/Tdyn/Descargar).
If the problem persists, please contact with me directly, so i can check the
model.

Best regards,
Daniel


On Fri, May 14, 2010 at 1:00 PM, Lluis Mesquida
lluismesquida at hotmail.comwrote:

Hi, I'm using Tdyn 10.3.0

I have a problem when i try to lunch Calculations in a model which I have
Termal (solid and fluid), advection (solid and fluid) an fluid Flow.

When i try to launch the calculation after meshing, occurs a problem with
this message:
*
Error when preparing data for analisys can't read "goux". no such variable.
*

I don't know what could be the problem, becuase in other examples without
advection the same problem run without problems.

Anybody knows why i can't run all this toghether?

------------------------------
"Del lado oscuro de Internet protegido estar puedes." ¡Descárgate gratis
Internet Explorer 8! [url=http://www.quelafuerzateacompa%C3%B1e.com]http://www.quelafuerzateacompañe.com[/url]




--
-----------------------------------------------------------------------
Daniel Sá López
Ingeniero Naval
COMPASS Ingeniería y Sistemas S.A.
C/ Tuset 8, 7º 2ª
Barcelona 08006
http://www.compassis.com
T: (+34) 93.218.19.89
F: (+34) 93.396.97.46
E: danielsa at compassis.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20100514/efcfb58b/attachment.htm
User avatar
escolano
Posts: 1918
Joined: Sun Sep 05, 1982 10:51 pm

[GiDlist] Can I get the time consuming to generate mesh?

Post by escolano »

You can implement the GiD-tcl events raised before and after the generation of the mesh, and measure the time with some Tcl command, for example

proc BeforeMeshGeneration { elementsize } {
set ::TimeStart [clock seconds]
}

proc AfterMeshGeneration { fail } {
set now [clock seconds]
WarnWinText "Meshing time: [expr $now-$::TimeStart] seconds"
}

To use it, you can copy these procedures in a .tcl file and source it
Or as a trick simply paste the code in the lower command line, preceded by -np- and an space (-np- want to mean 'non-process' and must be followed by some tcl code.


Enrique Escolano

----- Original Message -----
From: "CHEN Ningning" xjtucnn at 163.com
To: gidlist at gid.cimne.upc.edu
Sent: Friday, May 14, 2010 5:00 AM
Subject: [GiDlist] Can I get the time consuming to generate mesh?


Hi,

Can I get the time which used to generate mesh?
How can I do?


        CHEN Ningning
        xjtucnn at 163.com
          2010-05-14


_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.edu
http://gid.cimne.upc.es/mailman/listinfo/gidlist
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20100514/77ce8023/attachment.htm
User avatar
abelcs
Posts: 146
Joined: Mon Oct 13, 2014 9:14 am

[GiDlist] Can I get the time consuming to generate mesh?

Post by abelcs »

Dear Chen,

Now there is no tool to know the time used to generate the mesh inside GiD. The only way for obtaining this information is to control the times of gid process by the system tools (Windows, etc.).

Kind regards,

ABEL


_________________________________
Abel Coll Sans - Civil Engineer
CIMNE - International Center for Numerical Methods in Engineering
Ofice c-2, C1 building - Campus Nord UPC
Gran Capità s/n, 08034 Barcelona
T: 34 - 93 401 74 03 Fax: 34 - 93 40 65 17
________________________________



AVISO IMPORTANTE

Los datos de carácter personal contenidos en el mensaje, se registrarán en un fichero para facilitar la gestión de las comunicaciones de CIMNE. Se pueden ejercitar los derechos de acceso, rectificación, cancelación y oposición por escrito, dirigiéndose a nuestras oficinas de CIMNE, Gran Capitán s/n, Edificio C1 - Campus Norte UPC, 08034 Barcelona, España.

AVÍS IMPORTANT

Les dades de caràcter personal contingudes en aquest missatge es registraran en un fitxer per facilitar la gestió de les comunicacions del CIMNE. Es poden exercir els drets d'accés, rectificació, cancel·lació i oposició, per escrit a les nostres oficines del CIMNE, Gran Capità s/n, Edifici C1, Campus Nord UPC, 08034 Barcelona, Espanya.

IMPORTANT NOTICE

All personal data contained in this mail will be processed confidentially and stored in a file property of CIMNE in order to manage corporate communications. You may exercise the right of access, rectification, deletion and objection by letter sent to CIMNE, Gran Capitán, Edificio C1 - Campus Norte UPC, 08034 Barcelona, Spain.

________________________________




-----Mensaje original-----
De: gidlist-admin at gid.cimne.upc.edu [mailto:gidlist-admin at gid.cimne.upc.edu] En nombre de CHEN Ningning
Enviado el: viernes, 14 de mayo de 2010 5:00
Para: gidlist at gid.cimne.upc.edu
Asunto: [GiDlist] Can I get the time consuming to generate mesh?

Hi,

Can I get the time which used to generate mesh?
How can I do?


        CHEN Ningning
        xjtucnn at 163.com
          2010-05-14


_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.edu
http://gid.cimne.upc.es/mailman/listinfo/gidlist
Post Reply