You can derive calculated values stored as history charts by developing a plugin:
[b][font=courier][color=blue] IfmResult IfmGetHistoryDimensions (IfmDocument pDoc, IfmHistoryID nID, int nKind, int* nTimes, int* nHist);
IfmResult IfmGetHistoryValues (IfmDocument pDoc, IfmHistoryID nID, int nKind, int nTimes, int nHist, double* pTimes, double** pValues);[/color][/font][/b]
Here is a an overview about available histories. The ID is also indicated:
[b][font=courier][color=blue]typedef enum IfmHistoryID {
IfmHIST_HEAD = 1, /* The 'head distribution' window */
IfmHIST_AVER_M = 2, /* The 'average mass distribution' window */
IfmHIST_LOCA_M = 3, /* The 'local mass distribution' window */
IfmHIST_AVER_H = 4, /* The 'average heat distribution' window */
IfmHIST_LOCA_H = 5, /* The 'local heat distribution' window */
IfmHIST_FFLUX = 6, /* The 'fluid flux' window */
IfmHIST_MFLUX = 7, /* The 'mass flux' window */
IfmHIST_HFLUX = 8, /* The 'heat flux' window */
IfmHIST_ITERA = 10, /* Iteration window index */
IfmHIST_TIMES = 12, /* Time step history index */
IfmHIST_RESIDUAL = 13, /* Residual window index */
IfmHIST_VARIO = 15, /* Kriging variogram index */
IfmHIST_ANA = 16, /* Analytical function index */
IfmHIST_MULTW_FLUX = 17, /* Muli-layer well flux window index */
IfmHIST_BHE = 18, /* Borehole heat exchanger window index */
IfmHIST_IFM = 19, /* IFM based diagram window index */
IfmHIST_FFLUX_I = 20, /* The 'integral fluid flux' window */
IfmHIST_MFLUX_I = 21, /* The 'integral mass flux' window */
IfmHIST_HFLUX_I = 22, /* The 'integral heat flux' window */
IfmHIST_BHE_IO = 23 /* The Inlet/outlet bhe diagram */
} IfmHistoryID;[/color][/font][/b]
These API functions are shown in C, but can be easily migrated to Python. Please let me know if I may further assist you.