SV: [GiDlist] Volume generation

Moderator: GiD Team

Post Reply
Miguel A. de Riera Pasenau

SV: [GiDlist] Volume generation

Post by Miguel A. de Riera Pasenau »

Sorry but the model i sent was not correct.
while deleting and recreating the surfaces i made a
mistake.
i send now the corrected version.
i little bit of work is still necesary to be done to
create the volume mesh:
· delete the insignificant, too little, surfaces
· subdivide the one big volume into several ones to
work more easely.

miguel



From: "Miguel A. de Riera Pasenau" miguel_pasenau at hotmail.com
Reply-To: gidlist at gatxan.cimne.upc.es
To: gidlist at gatxan.cimne.upc.es
Subject: Re: SV: [GiDlist] Volume generation
Date: Tue, 05 Nov 2002 21:23:27 +0000

Here you have de corrected geometry.
i corrected it with geometry-Create-intersecion-line-line
'utilities-colapse-lines'
deleteing and recreating som surfaces

now the problem will be to mesh the volume.

first there are some little surfaces that perhaps can be deleted,
take a look at the surface mesh.
instead of meshing the whole volume in one piece, i suggest
to subdivede it into several ones, just creating interior-separator
surfaces and fix each one of them.

miguel


From: "Miguel A. de Riera Pasenau" miguel_pasenau at hotmail.com
Reply-To: gidlist at gatxan.cimne.upc.es
To: gidlist at gatxan.cimne.upc.es
Subject: Re: SV: [GiDlist] Volume generation
Date: Tue, 05 Nov 2002 17:46:11 +0000

The problem with those lines, and the volume,
is that there are some gaps between surfaces,
look at jktest_prob_1.gif
the messages points this, because, for instance
line 212 only belongs to one surface and thus
only appears 1 time when creating the volume.
You can use 'Utilities-DrawHigher-Lines' to
draw those lines.
look at jktest_prob_2.gif
if you mesh the surfaces model and use the
'Meshing-boundaries' you will see the edges
that are alone, so you can localize the
problematic zones.

miguel





From: "Kristian" kk at byg.dtu.dk
Reply-To: gidlist at gatxan.cimne.upc.es
To: gidlist at gatxan.cimne.upc.es
Subject: SV: [GiDlist] Volume generation
Date: Tue, 5 Nov 2002 15:03:41 +0100

Hi,

OK, thanks for your answer. My problem is quite complicated as you can
see
from the attached file. I have tried to and inner and a outer set of
surfaces. In between I want a volume. So if I created the surfaces
correctly
(and from the surface mesh it looks fine) I should be able to select all
surfaces to create one volume, or...?

Kristian.

-----Oprindelig meddelelse-----
Fra: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es]På vegne af Ramon Ribó
Sendt: 5. november 2002 14:34
Til: gidlist at gatxan.cimne.upc.es
Emne: RE: [GiDlist] Volume generation



Hello,

This is a slightly difficult way to say that you have
problems near line 296.

Technically speaking, it means that there is only one
selected surface that has this line as boundary. In order
to create a closed volume, all lines must have exactly
two surfaces with that line as boundary.

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 Kristian
Enviado el: martes, 05 de noviembre de 2002 14:21
Para: gidlist at gatxan.cimne.upc.es
Asunto: [GiDlist] Volume generation


Hi,

What exactly does it mean that

"line number 296 is 1 times into volume generation" ?

Kristian.

-----Oprindelig meddelelse-----
Fra: gidlist-admin at gatxan.cimne.upc.es
[mailto:gidlist-admin at gatxan.cimne.upc.es]På vegne af Enrique Escolano
Sendt: 4. november 2002 11:14
Til: gidlist at gatxan.cimne.upc.es
Emne: Re: [GiDlist] Can we test the proc written with Tcl/Tk tested in
GiD PlatForm??


You must call your procedure directly from InitGIDProject (this procedure
is
automatically called by GiD on the "problemtype load" event)
You can use InitGIDProject to create some menu to invoke after your
procedures

Read the GiD help about Tcl/tk extension.

Download also the Advanced course documentation (of the 1st Conference on
Advances and Applications of GiD), and read the chapter 3 "EXTENDING GID
WITH TCL/TK"

Enrique Escolano
----- Original Message -----
From: "VSayako Willy" vilaysako at yahoo.com
To: gidlist at gatxan.cimne.upc.es
Sent: Friday, November 01, 2002 11:08 AM
Subject: [GiDlist] Can we test the proc written with Tcl/Tk tested in GiD
PlatForm??


Thanks Enrique for your prompt advice. I'm working
with Tcl/Tk and need to test the files inside GiD
PlatForm....Can we do this?? if so how?

Best regards
----------------------------------------------------
--- Enrique Escolano escolano at cimne.upc.es wrote:
if your command
source [file join $dir scripts xxxxxx.tcl]
is inside the proc InitGIDProject, then dir is a
parameter of this procedure,
containing the path ot your problem type, else you
are responsible
to set the variable dir with your desired path.
proc InitGIDProject { dir } {
...
source [file join $dir scripts xxxxxx.tcl]
...
}

If your problem type is
/problemtypes/sample.gid ,
then xxxxxx.tcl can be located in
/problemtypes/sample.gid/scripts/xxxxxx.tcl

Notes:
- You can store the parameter dir of InitGIDProject
in another global variable to access to the
problemtype directory inside another procedure

proc InitGIDProject { dir } {
global MySampleVar
set MySampleVar(ProblemTypePath) $dir
...
}

proc another { } {
global MySampleVar
source [file join $MySampleVar(ProblemTypePath)
scripts xxxxxx.tcl]
...
}

- It is unrecommended to copy your own scripts in
the /scripts directory of GiD, is best to copy it
inside your own problemtype directory.

Enrique Escolano

----- Original Message -----
From: "VSayako Willy" vilaysako at yahoo.com
To: gidlist at gatxan.cimne.upc.es
Sent: Tuesday, October 29, 2002 11:30 AM
Subject: [GiDlist] How to connect the Tcl files in
dir scripts



Hi Enrique
I have created the tcl files which will be used
in
my problemType. In my ProblemType.tcl file I
connected
with the following command:
source [file join $dir scripts xxxxxx.tcl]
I don't know if it's somewhere wrong?? but it says
that can't read the "dir"...I don't know if we
should
add anything else more???
Actually while having not included the source
command
the ProblemType.tcl is working well with other
options.

Generally how can we do to connect those tcl files
in
scripts directory.

Regards

__________________________________________________
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist




__________________________________________________
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist


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

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


_______________________________________________
GiDlist mailing list
GiDlist at gid.cimne.upc.es
http://gid.cimne.upc.es/mailman/listinfo/gidlist
jktest.msh
jktest.geo


_________________________________________________________________
MSN Fotos: la forma más fácil de compartir e imprimir fotos.
http://photos.msn.es/support/worldwide.aspx
jktest_prob_1.gif
jktest_prob_2.gif


_________________________________________________________________
Charla con tus amigos en línea mediante MSN Messenger:
http://messenger.microsoft.com/es
jktest_corrected.zip


_________________________________________________________________
Charla con tus amigos en línea mediante MSN Messenger:
http://messenger.microsoft.com/es
-------------- next part --------------
A non-text attachment was scrubbed...
Name: jktest_corrected.zip
Type: application/x-zip-compressed
Size: 751827 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20021106/8b1e5bc2/attachment.bin
Post Reply