This function calculates the ionization of a compound at a given pH. The pKa's are either entered as parameters or taken from a specific compound in the package.
calc_ionization(chem.cas=NULL,chem.name=NULL,pH=NULL,pKa_Donor=NA,pKa_Accept=NA)
Either the chemical name or the CAS number must be specified.
Either the chemical name or the CAS number must be specified.
pH where ionization is evaluated.
Compound H dissociation equilibirum constant(s). Overwrites chem.name and chem.cas.
Compound H association equilibirum constant(s). Overwrites chem.name and chem.cas.
fraction of compound neutral
fraction of compound charged
fraction of compound negative
fraction of compound positive
fraction of compound zwitterionic
The fractions are calculated by determining the coefficients for each species and dividing the particular species by the sum of all three. The positive, negative and zwitterionic/neutral coefficients are given by: $$zwitter/netural = 1$$ $$for(i in 1:pkabove) negative = negative + 10^(i * pH - pKa1 - ... - pKai)$$ $$for(i in 1:pkbelow) positive = positive + 10^(pKa1 + ... + pKai - i * pH)$$ where i begins at 1 and ends at the number of points above(for negative) or below(for positive) the neutral/zwitterionic range. The neutral/zwitterionic range is either the pH range between 2 pKa's where the number of acceptors above is equal to the number of donors below, everything above the pKa acceptors if there are no donors, or everything below the pKa donors if there are no acceptors. Each of the terms in the sums represent a different ionization.
# NOT RUN {
calc_ionization(chem.name='bisphenola',pH=7.4)
calc_ionization(pKa_Donor=8,pKa_Accept=c(1,4),pH=9)
# }
Run the code above in your browser using DataLab