Skip to main content
16-Pearl
January 30, 2024
Question

Probe to anlysis feature

  • January 30, 2024
  • 1 reply
  • 1815 views

Hi,

 

I want to use the Creo Simulation Live Probe value in Relations.
Is it possible to convert Probe values into analysis features?

 

Thanks

1 reply

21-Topaz II
January 30, 2024

A quick search for "creo simulation live probe" yields among other things, the following:

https://support.ptc.com/help/creo/creo_pma/r10.0/usascii/index.html#page/simulate/simulation_live/querying_results_probe_sim_live.html 

The help file information contained therein tells one how to save a probe in the model as a saved analysis.

Using saved analyses in relations is something I've done for stuff like getting the area of a complicated surface, using a measured distance, etc. It's a nice thing to be able to use, you just have to look into the syntax of how to get the values for your particular saved analysis. i.e. for an area measurement I can assign the measured value to a parameter via a relation like this:

 

areatot = AREA:FID_MXAREATOT

 

In this case the pertinent information is as follows:

"areatot" is the parameter I want to assign the measured value to.

"AREA" specifies I want the measured area. for volume it would be "VOLUME", etc. You'll have to figure out what the particular value you want is called by Creo to get to it.

":FID_MXAREATOT" says I am asking for values saved in my model as "MXAREATOT", a name I assigned to the saved analysis when I created it. The ":FID_" is syntax needed to refer to the analysis.

 

Hopefully this will get you going.

10-Marble
January 30, 2024

HI, 

Unfortunately your answer does not adress to the need.

What you wrote is true for analysis feature and not for Probes.

 

 

21-Topaz II
January 31, 2024

From the referenced documentation:

 

Click Save, specify a name for the probe and click OK to save the probe and add it to the Model Tree.
Probes are also saved as analyses in the model, and can be retrieved by the following methods:
Click Analysis > Saved Analysis.
Click Live Simulation > Query > Saved Analysis.
 
This led me to believe that the results of the probe are saved as an analysis, since it seems to use the Analysis functionality to do the saving.