Skip to content

Instantly share code, notes, and snippets.

View progressiverocker's full-sized avatar

progressiverocker

View GitHub Profile
"""The Premedicant Dose for animal type is the weight of animal multipled by drug dose_rate, divided by drug concertration."""
class Premedicant_dose(object):
drug_concerntrations = {"metacam" : 5, "synulox" : 32.5, "ketamine" : 100}
rates = {
'dog' : {"metacam" : 0.2, "synulox" : 12.5, "ketamine" : 2},
'cat' : {"metacam" : 0.2, "synulox" : 12.5, "ketamine" : 5},
'rabbit' : {"metacam" : 0.6, "synulox" : "contraindicated", "ketamine" : 20}
}