0
我想通過海洋在Petrel的自定義單元系統中添加自定義單元。
正如開發者指南的建議,我用下面的代碼:如何在海洋中添加Petrel中的自定義單位?
IUnitService unitService = Slb.Ocean.Core.CoreSystem.GetService();
IUnitCatalog catalog = unitService.GetCatalog(null);
System.Collections.Generic.IDictionary map =
new System.Collections.Generic.Dictionary();
map["Pressure"] = "MyUnit";
catalog.CreateCustomUnitSystem("My UnitSystem",
"UnitSystem for my additional units.",
map,
"MyUnitSystem");
我把這些代碼在初始化和集成方法。 在這兩種情況下,Ocean都會拋出一個SEHException。
任何想法出了什麼問題?