Visual Studio 2012 for Dymola 无法编译

Visual Studio 2012 for Dymola cannot compile

我是 dymola 的新手,我的项目有问题;实际上,我必须将液化天然气(我使用的介质 Methane_Coolprop)从一个封闭罐转移到另一个封闭罐,它通过一个阀门来降低压力,但是当我开始模拟时,我的编译器出现错误。我会附上一些图片并在这里复制文本,以防万一有人知道我该怎么办?

Compiling and linking the model (Visual C++).

dsmodel.c
dsmodel.c(330) : warning C4133: 'fonction': types incompatibles - de 'DymStruc0 *' 'ExternalThermodynamicState *'
dsmodel.c(418) : warning C4133: 'fonction': types incompatibles - de 'DymStruc0 *' 'ExternalThermodynamicState *'
dsmodel.c(766) : warning C4133: 'fonction': types incompatibles - de 'DymStruc1 *' 'ExternalSaturationProperties *'
Cration de la bibliothque dymosim.lib et de l'objet dymosim.exp
ExternalMediaLib.lib(CoolPropTools.obj) : error LNK2019: symbole externe non rsolu "private: static void __cdecl std::locale::facet::_Facet_Register(class std::locale::facet *)" (?_Facet_Register@facet@locale@std@@CAXPAV123@@Z) rfrenc dans la fonction "public: void __thiscall std::locale::facet::_Register(void)" (?_Register@facet@locale@std@@QAEXXZ)
ExternalMediaLib.lib(CoolPropTools.obj) : error LNK2019: symbole externe non rsolu "__declspec(dllimport) public: class std::locale::facet * __thiscall std::locale::facet::_Decref(void)" (__imp_?_Decref@facet@locale@std@@QAEPAV123@XZ) rfrenc dans la fonction "public: __thiscall std::locale::~locale(void)" (??1locale@std@@QAE@XZ)
ExternalMediaLib.lib(CoolPropTools.obj) : error LNK2019: symbole externe non rsolu "__declspec(dllimport) public: void __thiscall std::locale::facet::_Incref(void)" (__imp_?_Incref@facet@locale@std@@QAEXXZ) rfrenc dans la fonction "class std::codecvt<char,char,int> const & __cdecl std::use_facet<class std::codecvt<char,char,int> >(class std::locale const &)" (??$use_facet@V?$codecvt@DDH@std@@@std@@YAABV?$codecvt@DDH@0@ABVlocale@0@@Z)
dymosim.ex_ : fatal error LNK1120: 3 externes non rsolus

ExternalMedia 目前不能与 MSL 4.0.0 一起使用,您必须使用旧版本的 MSL(请参阅此处 https://github.com/modelica-3rdparty/ExternalMedia/tree/v.3.3.0-dev 的 ExternalMedia 自述文件)。我建议在您自己的组件中使用媒体模型之前确保 ExternalMedia 的示例模型正常工作。

如果问题仍然存在,代码示例将对回答您的问题有很大帮助。