c++调用cst仿真时,点击rcs计算按钮,cst中出现Solver_HF_Asymptotic_AMD64: Service pack mismatch: caller is version 2021.1 while current executable is version 2021.0。这个如何更改,2021.1版本的cst如何下载

c++调用cst仿真时,点击rcs计算按钮,cst中出现Solver_HF_Asymptotic_AMD64: Service pack mismatch: caller is version 2021.1 while current executable is version 2021.0。这个如何更改,2021.1版本的cst如何下载

阿里嘎多学长整理AIGC生成,因移动端显示问题导致当前答案未能完全显示,请使用PC端查看更加详细的解答过程
你遇到了一个问题,使用 C++ 调用 CST 仿真时,点击 RCS 计算按钮,CST 中出现 Solver_HF_Asymptotic_AMD64: 服务包不匹配:调用者是 2021.1 版本的 CST。
解决方案:
示例代码:
#include "cst.h"
int main() {
// 创建 CST 仿真对象
cst::Solver solver("Solver_HF_Asymptotic", "AMD64", "2021.1"); // 指定 CST 版本号
// ...
return 0;
}