Calculate logP value

User 82b20b535e

21-03-2016 15:51:45

We have the license from chemaxon to calculate the logp and logD value. May I request to point me to an example to calculate logP and logD value. My development environment is on .NET frame work. 


Thanks

ChemAxon 2e7d8629fa

21-03-2016 20:52:17

 Hi,


 


You can use the interface ICalculationService on a JChemMolecule instance via the property Calculations.


IJChemMolecule molecule = MainFactory.Chemistry.CreateMolecule("benzene");


double logP = molecule.Calculations.logP;


double logD = molecule.Calculations.GetlogD(7.4);


 


Please check this page:


https://www.chemaxon.com/dotNET/6.3/examples.html#calculations


 


Regards,


Gergely

User 82b20b535e

22-03-2016 16:04:38










gkovacs wrote:

 Hi,


 


You can use the interface ICalculationService on a JChemMolecule instance via the property Calculations.


IJChemMolecule molecule = MainFactory.Chemistry.CreateMolecule("benzene");


double logP = molecule.Calculations.logP;


double logD = molecule.Calculations.GetlogD(7.4);


 


Please check this page:


https://www.chemaxon.com/dotNET/6.3/examples.html#calculations


 


Regards,


Gergely



Thanks got the value.