cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

Creo does not provide any information about Regeneration Status of the model

MN_10734180
1-Newbie

Creo does not provide any information about Regeneration Status of the model

Hi
1. We develop Design Optimization Software product called as modeFRONTIER,where the product  used by Aerospace Design Optimation and Automobile Design Optimization, Currently working as Jr.Software Engineering  
2. We use Creo Parametric of  10.0.0.0 version
3. To regenerate the model we are using Creo Solid::Regenerate API.Complex model requires regeneration status for  multiples Regeneration in order to get the regeneration status of the model,and creo doesnot provide any information about Regenaration Status(whether model is Success/failure) of the model.

We use below three lines of Code for Regeneration
RegenInstructions instr = pfcSolid.RegenInstructions_Create(Boolean.FALSE, null, null);
instr.SetForceRegen(true);
((Solid) model).Regenerate(instr);
We found  that  ProSolidRegenerationstatusGet(). is Pro/toolkit  which is a C Customization tool.However we need OTK java toolkit to determine regeneration Status(wheteher Success/failure of regenration ).
4.We Integrate the Creo Parametric tool with modeFRONTIER .We attempt to  regenerate the model using creo parametric,however after regeneration we are unabl to determine the status of regeneration 
5.User can get the satus of regeneration after attempting regeneration of the model. 

1 REPLY 1

Only in OTK Java

WRegenerate
void	WRegenerate	( /*optional*/ WRegenInstructions Instrs)
    	Regenerates the model accoding to provided instructions.
This method generates XToolkitRegenerateAgain if the model is too complex to regenerate the first time. 

 

Also you can try to check a regeneration result in action listener

pfcSolid.SolidActionListener.OnAfterRegen

void	OnAfterRegen	(Solid Sld, /*optional*/ Feature StartFeature, boolean WasSuccessful)
    	Provides a notification function called after regenerating a solid.
Manual References:
    Action Listeners: Solid Level Action Listeners, Action Listeners: Solid Level Action Listeners 
Parameters:
    Sld
        The solid that was regenerated.
    StartFeature
        The starting feature of the regeneration. 
    WasSuccessful
        This is true if the solid regenerated successfully.Otherwise, this is false.

 

Top Tags