Search found 8 matches

by wfmoralesp
Mon Oct 12, 2015 6:11 pm
Forum: Geometry
Topic: Problem with NURBS intersection
Replies: 1
Views: 3776

Problem with NURBS intersection

Hi everyone, I'm trying to import a point cloud and create a nurbs surface I can work with. I succeeded by importing the XYZ points and applying "Geometry/Create/NURBS surface/by Points". This creates a surface whose borders don't fit to the extension of the point cloud , and that I need t...
by wfmoralesp
Wed Apr 15, 2015 5:07 pm
Forum: Customization
Topic: Listing node numbers of an element with specific condition
Replies: 4
Views: 5679

Re: Listing node numbers of an element with specific conditi

Hi Miguel,

Muchas gracias!! It works like a charm!! I'd have never realized of that by myself.
by wfmoralesp
Wed Apr 15, 2015 4:45 pm
Forum: Customization
Topic: Listing node numbers of an element with specific condition
Replies: 4
Views: 5679

Re: Listing node numbers of an element with specific conditi

Hi, At the beginning I thought the same. That no linear elements were being generated, and I did the same you suggested (Mesh->Mesh criteria->Mesh->Lines). Now, I'm sure there are linear elements in the model (also said by the dialog window when the mesh is generated) even when I 'draw' the conditio...
by wfmoralesp
Wed Apr 15, 2015 4:05 pm
Forum: Customization
Topic: Listing node numbers of an element with specific condition
Replies: 4
Views: 5679

Listing node numbers of an element with specific condition

Hi, I want to apply a condition on some linear elements, and later to loop through the elements that have that condition applied and listing their corresponding node connectivities. I tried using: NUMBER:30 CONDITION: Structure CONDTYPE: over lines CONDMESHTYPE: over body elements QUESTION: X VALUE:...
by wfmoralesp
Tue Apr 14, 2015 3:34 pm
Forum: Customization
Topic: Problem with *if statement
Replies: 4
Views: 5424

Re: Problem with *if statement

Thx so much for your help, your idea of explicitly expressing field as integer did the work, at the end I have it working as: *if(IntvData(1,int))
by wfmoralesp
Tue Apr 14, 2015 3:04 pm
Forum: Customization
Topic: Problem with *if statement
Replies: 4
Views: 5424

Re: Problem with *if statement

Hi, your suggestion of using (*if(strcmp(cond(1),"Liner")==0)) worked. However, the another IF statement (*if(IntvData(1)!=0)) continues showing the error message. I even tried your suggestion of using the field's name, i.e. *if(IntvData(Material_ID_to_modify)!=0), but nothing :(, any othe...
by wfmoralesp
Mon Apr 13, 2015 11:50 pm
Forum: Customization
Topic: Problem with *if statement
Replies: 4
Views: 5424

Problem with *if statement

Hi, I'm trying to use an IF statement in my .bas file as: *loop intervals check_mat=*IntvData(1) *if(IntvData(1)!=0) *IntvData(1),*IntvData(2),*IntvData(3) *Set Cond Structure *nodes *if(CondNumEntities>0) *loop *nodes *OnlyInCond *if(strcmp(*cond(1),"Liner")==0) *cond(2),1,*NodesNum,*cond...
by wfmoralesp
Fri Apr 10, 2015 1:36 pm
Forum: Customization
Topic: Staggered analysis
Replies: 1
Views: 3253

Staggered analysis

Hi, I'm working on a project that requires several stages to be performed, i.e. modifying materials (to simulate excavations), adding elements (for instance linear elements for lining), etc. I wonder if GiD has a preprocessing capability to handle this. I thought about using 'intervals' but those ar...