Using IPhreeQC Com Module with Matlab
10 次查看(过去 30 天)
显示 更早的评论
Hi All I am trying to use the com module in matlab and i can't find a refrence for the syntax for the string (which you can send to the RunString). Can anyone give me an example (a simple one)? thanks a lot
paz
0 个评论
回答(2 个)
Leonardo Meireles
2018-3-28
Hi Paz,
That was a long time ago, but there is a simple example in the PHREEQC users' forum:
iphreeqc = actxserver('IPhreeqcCOM.Object'); iphreeqc.LoadDatabase(['whatever path' '\USGS\IPhreeqcCOM 3.3.7-11094\database\phreeqc.dat']);
iphreeqc.ClearAccumulatedLines;
iphreeqc.AccumulateLine ('USER_PUNCH') iphreeqc.AccumulateLine ('-head Spec_Cond'); iphreeqc.AccumulateLine ('PUNCH SC');
iphreeqc.AccumulateLine ('SELECTED_OUTPUT'); iphreeqc.AccumulateLine ('-activities Ca+2 CO3-2'); iphreeqc.AccumulateLine ('-ionic_strength'); iphreeqc.AccumulateLine ('-pH');
iphreeqc.AccumulateLine ('SOLUTION 1 '); iphreeqc.AccumulateLine ('-pH 7 charge'); iphreeqc.AccumulateLine ('-temp 25'); iphreeqc.AccumulateLine ('-units mol/L'); iphreeqc.AccumulateLine (['C(4) ' num2str(c(1))]); iphreeqc.AccumulateLine (['Ca ' num2str(c(2))]); iphreeqc.AccumulateLine (['Cl ' num2str(c(3))]); iphreeqc.AccumulateLine (['N(-3) ' num2str(c(4))]);
try iphreeqc.RunAccumulated; catch break; end
out_PHREEQC = iphreeqc.GetSelectedOutputArray;
The original thread is at the address below.
Best regards,
Leo.
M Muniruzzaman
2017-11-8
Here is work that we did that demonstrate using IPhreeqcCOM with Matlab.
2 个评论
M Muniruzzaman
2018-3-20
No problem, what kind of syntax are you referring to? The general descriptions about IPhreeqc methods can be found in the paper by Charlton and Parkhurst (2011), ADWR or in the PHREEQC site: https://wwwbrr.cr.usgs.gov/projects/GWC_coupled/iphreeqc/classIPhreeqc.html
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Use COM Objects in MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!