dcmri.ca_conc#

dcmri.ca_conc(agent: str) float[source]#

Contrast agent concentration

Parameters:

agent (str) – Generic contrast agent name, all lower case. Examples are ‘gadobutrol’, ‘gadobenate’, etc.

Raises:

ValueError – If no data are available for the agent.

Returns:

concentration in mmol/mL

Return type:

float

Sources:

Example

Print the concentration of the agents gadobutrol and gadoterate:

import dcmri as dc

print('gadobutrol is available in a solution of', dc.ca_conc('gadobutrol'), 'M')
print('gadoterate is available in a solution of', dc.ca_conc('gadoterate'), 'M')
gadobutrol is available in a solution of 1.0 M
gadoterate is available in a solution of 0.5 M