Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Bounded Plane in KF (Knowledge Fusion)

Status
Not open for further replies.

severin

Mechanical
Joined
Aug 8, 2007
Messages
3
Location
DE
Hi,

i have intersected few faces and a i have joined the curves with "ug_curve_join"
How get the bounded plane of "total_curve:"?
Actually i need the are of "total curve".

Thx!

#! NX/KF 6.0
DefClass: New_Class_Name (ug_base_part);

(Child) boundary_0: {
Class, ug_curve_intersection;
Set1_References, {Face:};
Set2_References, {Face_0:};
};

(Child) boundary_1: {
Class, ug_curve_intersection;
Set1_References, {Face_0:};
Set2_References, {Face_1:};
};

(Child) boundary_2: {
Class, ug_curve_intersection;
Set1_References, {Face_0:};
Set2_References, {Face_2:};
};

(Child) boundary_3: {
Class, ug_curve_intersection;
Set1_References, {Face_0:};
Set2_References, {Face_3:};
};

#join the boundary

(Child) total_curve: {
Class, ug_curve_join;
profile, {boundary_0:,boundary_1:,boundary_2:,boundary_3:};
};
 
How can i create the bounden plane of "total_curve:"?

How can i get the area of "total_curve:"?

Thx!
 
Have you tried adopting the output from the bounded plane feature from a manual modelling step? This will give you an indication if the bounded plane feature is available in KF at first.

Regards,
Peter
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top