[GiDlist] InitGIDProject-LoadGIDProject

Moderator: GiD Team

VSayako Willy

[GiDlist] Can we test the proc written with Tcl/Tk tested in

Post by VSayako Willy »

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/
Enrique Escolano

[GiDlist] Can we test the proc written with Tcl/Tk tested in

Post by Enrique Escolano »

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

VSayako Willy

[GiDlist] What Version of <Tcl/Tk> included in GiD latest Ve

Post by VSayako Willy »

Hi Enrique and GiD team
I'm using the Tcl/Tk (8.4.01.)to write procs for GiD
and it seems to me that some command of Tcl/Tk are not
recognized by GiD version 7.1?? what is Tcl/Tk version
attached in GiD? for example I used labelframe
command and so then it didn't recognize..

As you said now you have a new version of GiD? but I
didn't see any new in your webpage?? What I've seen
only GiD version 7.?? or just dowload it then I will
get a new version??

Regards.



__________________________________________________
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
Miguel A. de Riera Pasenau

[GiDlist] What Version of <Tcl/Tk> included in GiD latest Ve

Post by Miguel A. de Riera Pasenau »

the version of TclTk in GiD is the 8.3.3.

the new beta version can be found here:

ftp://gid.cimne.com/pub/gid_adds/Windows/GiD7.1.3b-win.exe
ftp://gid.cimne.com/pub/gid_adds/Linux/gid7.1.3b.tar.gz

miguel

VSayako Willy wrote:

Hi Enrique and GiD team
I'm using the Tcl/Tk (8.4.01.)to write procs for GiD
and it seems to me that some command of Tcl/Tk are not
recognized by GiD version 7.1?? what is Tcl/Tk version
attached in GiD? for example I used labelframe
command and so then it didn't recognize..

As you said now you have a new version of GiD? but I
didn't see any new in your webpage?? What I've seen
only GiD version 7.?? or just dowload it then I will
get a new version??

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

--
--------------------------------------------------------------------------------
Miguel A. de Riera Pasenau miguel at cimne.upc.es http://gid.cimne.upc.es
Enrique Escolano

[GiDlist] What Version of <Tcl/Tk> included in GiD latest Ve

Post by Enrique Escolano »

This last 7.1.3 version, is a Beta release only, not a final version,
See the section "Download-Beta Versions" inside the GiD web page.

Enrique
----- Original Message -----
From: "VSayako Willy" vilaysako at yahoo.com
To: gidlist at gatxan.cimne.upc.es
Sent: Tuesday, November 05, 2002 10:06 AM
Subject: [GiDlist] What Version of Tcl/Tk included in GiD latest Version??



Hi Enrique and GiD team
I'm using the Tcl/Tk (8.4.01.)to write procs for GiD
and it seems to me that some command of Tcl/Tk are not
recognized by GiD version 7.1?? what is Tcl/Tk version
attached in GiD? for example I used labelframe
command and so then it didn't recognize..

As you said now you have a new version of GiD? but I
didn't see any new in your webpage?? What I've seen
only GiD version 7.?? or just dowload it then I will
get a new version??

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

Kristian

[GiDlist] Volume generation

Post by Kristian »

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
Ramon Ribó

[GiDlist] Volume generation

Post by Ramon Ribó »

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
Kristian

SV: [GiDlist] Volume generation

Post by Kristian »

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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: jktest.msh
Type: application/octet-stream
Size: 571348 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20021105/6f57bdc2/attachment.obj
-------------- next part --------------
A non-text attachment was scrubbed...
Name: jktest.geo
Type: application/octet-stream
Size: 327728 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20021105/6f57bdc2/attachment-0001.obj
Enrique Escolano

[GiDlist] Volume generation

Post by Enrique Escolano »

Your model has bad precision, for that reason appear some duplicated
entities.
I' attach your model corrected, with the volume created and meshed.
In order to obtain it, I have collapsed the model with a tolerance of 1.5
units, I have made some line intersections and deleted and re-created from
the boundary lines several conflicting surfaces.
Enrique Escolano
----- Original Message -----
From: "Kristian" kk at byg.dtu.dk
To: gidlist at gatxan.cimne.upc.es
Sent: Tuesday, November 05, 2002 3:03 PM
Subject: SV: [GiDlist] Volume generation


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

-------------- next part --------------
A non-text attachment was scrubbed...
Name: jktest.geo
Type: application/octet-stream
Size: 342405 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20021105/e3da534f/attachment.obj
-------------- next part --------------
A non-text attachment was scrubbed...
Name: jktest.msh
Type: application/octet-stream
Size: 2381052 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20021105/e3da534f/attachment-0001.obj
Miguel A. de Riera Pasenau

[GiDlist] Volume generation

Post by Miguel A. de Riera Pasenau »

Hi, sorry, i didn't see your mail, Enrique.

your solution is more 'automatic' and less 'user' interactive,
so saving some user-hours.

i send the same files in .zip format for those of you who
have a little mail account

miguel

Enrique Escolano wrote:

Your model has bad precision, for that reason appear some duplicated
entities.
I' attach your model corrected, with the volume created and meshed.
In order to obtain it, I have collapsed the model with a tolerance of 1.5
units, I have made some line intersections and deleted and re-created from
the boundary lines several conflicting surfaces.
Enrique Escolano
----- Original Message -----
From: "Kristian" kk at byg.dtu.dk
To: gidlist at gatxan.cimne.upc.es
Sent: Tuesday, November 05, 2002 3:03 PM
Subject: SV: [GiDlist] Volume generation

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



--
--------------------------------------------------------------------------------
Miguel A. de Riera Pasenau miguel at cimne.upc.es http://gid.cimne.upc.es
-------------- next part --------------
A non-text attachment was scrubbed...
Name: jktest.zip
Type: application/x-zip-compressed
Size: 928372 bytes
Desc: not available
Url : http://listas.cimne.upc.edu/pipermail/gidlist/attachments/20021106/b08e00be/attachment.bin
Post Reply