[GiDlist] Only a signle condition not all

Moderator: GiD Team

Post Reply
Andrea Calaon

[GiDlist] Only a signle condition not all

Post by Andrea Calaon »

Hello everyone,
thanks for the suggestion. I use already commands like

proc InitGIDProject { dir } {
GidChangeDataLabel "Conditions" ""
}

not to visualize Data Units and similars.
In this case I would like to have the submenu "Conditions"
displayed, but without only one of the conditions, precisely the
"Zones" one, which is applied automatically before meshing.
Thanks
Regards

Andrea Calaon

Ashurst Lodge, Ashurst
Southampton, Hampshire
SO40 7AA, UK
Tel. office: +44 23 80 293 223
Fax office: +44 23 80 292 853
Mobile: +44 7766 488 225
E-mail: andrea at beasy.com
Jorge Suit Perez Ronda

[GiDlist] Only a signle condition not all

Post by Jorge Suit Perez Ronda »

Hello, you can use BOOKS in order to do what you want and use
GidShowBook to hide the BOOK containing the hiden conditions.
Here I include an example:

------------- sample .cnd file -----------

BOOK: Visibles
CONDITION: Point_Constraints
CONDTYPE: over points
CONDMESHTYPE: over nodes
QUESTION: X-Constraint#CB#(0,1)
VALUE: 1
QUESTION: Y-Constraint#CB#(0,1)
VALUE: 1
QUESTION: Z-Constraint#CB#(0,1)
VALUE: 1
END CONDITION
BOOK: Invisibles
CONDITION: Zones
CONDTYPE: over points
CONDMESHTYPE: over nodes
QUESTION: Your_Label
VALUE: your_value
END CONDITION

--------------- end sample .cnd file ----------------

---------------- sample .tcl file -----------------

proc InitGIDProject { dir } {
GidShowBook "conditions" Invisibles 0
}

------------- end sample .tcl file -----------------

hope it helps,

best regards,

Jorge Suit

Andrea Calaon wrote:

Hello everyone,
thanks for the suggestion. I use already commands like

proc InitGIDProject { dir } {
GidChangeDataLabel "Conditions" ""
}

not to visualize Data Units and similars.
In this case I would like to have the submenu "Conditions"
displayed, but without only one of the conditions, precisely the
"Zones" one, which is applied automatically before meshing.
Thanks
Regards

Andrea Calaon

Ashurst Lodge, Ashurst
Southampton, Hampshire
SO40 7AA, UK
Tel. office: +44 23 80 293 223
Fax office: +44 23 80 292 853
Mobile: +44 7766 488 225
E-mail: andrea at beasy.com

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




Post Reply