A computational Python library mapping microplastic concentration vectors across global aquatic pathways.
This predictive model represents the core architecture taught in our Microplastics Analytics & Detection program.
# Planned package: dstc-plastics is not yet released.
# This shows the intended API, not a working install.
import dstc_plastics as dp
model = dp.MicroplasticsModel(source="coastal", runoff=1.4)
density = model.predict(recycling_rate=35)
print(f"Est. Density: {density:.2f} particles/L")
# Example output: 1.64 particles/L (Risk: MODERATE)
The dstc-plastics package is not yet published. The snippet above shows the
intended interface so the calculation can be reviewed; run the model on this page in the
meantime.