This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#pragma once
#include "iAlgPvtBase.h"
#include "mAlgPseudo_global.h"
// 拟压力计算调用入口
class M_ALGPSEUDO_EXPORT iPseudoPressure : public iAlgPvtBase
{
public:
iPseudoPressure();
// 绑定成员变量,这个类里没用
virtual void bindMembers();
// 虚函数,计算函数,这个类里没用
virtual bool cal(VecDouble vecIns, VecDouble& vecOuts);
//关键计算函数,前3个是读出来的,最后那个是算的
// 分成三段分别计算:0~dSplit1, dSplit1~dSplit2, dSplit1~最大
bool calPs(VecDouble vecP, VecDouble vecZg, VecDouble vecMug, \
double dSplit1, double dSplit2, \
VecDouble& vecPs);
};