Skip to content
/ SFPPy Public

SFPPy - Python Framework for Food Contact Compliance and Risk Assessment๐Ÿโฉ๐ŸŽ

License

Notifications You must be signed in to change notification settings

ovitrac/SFPPy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

SFPPy - Python Framework for Food Contact Compliance and Risk Assessment ๐Ÿโฉ๐ŸŽ

Generative Simulation This project is part of the
Generative Simulation demonstrators
Say it.
Simulate it with AI.


๐Ÿ› ๏ธ Overview

SFPPy is a Python-based framework with ready-to-use Notebooks for compliance testing of food contact materials and recycled plastic safety assessment under:

This project implements first-principles chemical migration modeling and introduces a symbolic language and pipelines that AI models can easily parse and manipulate. All substances listed in PubChem can be directly imported and composed into migration scenarios โ€” manually or with AI assistance.

Note

โ‹†.หšโ˜๏ธโ‹† You can use SFPPy entirely through Google Colab, with no installation and minimal code. GUI-based tools, complete templates, and progressively complex examples are all available through the Colab badges above ( ๐ŸŽฌ full video).

A sister project โ€” SFPPyLite ๐ŸŒ โ€” lets you run SFPPy notebooks directly in your browser, with no installation or server required.

SFPPy_GUI

๐Ÿ“ฅ SFPPy can be installed locally in any Python (>3.8) environment and work with any notebook manager (see section Quick Start).

Why Notebooks?

Click to expand

๐Ÿ“šNotebooks offer a literate and dynamic way to evaluate food safety. They unify problem description, parameterization, simulation, evaluation, and reporting into a single, shareable document. This workflow is ideal for traceability and regulatory validation.
๐Ÿ—ฃ๏ธAI assistants also understand notebooks surprisingly well and can help you interactively. Below is how Gemini (Google's LLM) described the comply.ipynb notebook directly from this link:

๐Ÿ“– Notebook Description | case of notebooks/comply.ipynb

This notebook demonstrates how to evaluate substance migration from a polymeric sleeve into a packaged food simulant using SFPPy. The notebook automates key tasks, including retrieving chemical properties, defining package geometries, applying polymer parameters, and running mass transfer models. It also captures all results and underlying assumptions, providing a clear and traceable record of the simulation process for validation and regulatory assessment.

๐Ÿ“Œ Short Manual

To demonstrate compliance for a list of substances, a given packaging, and food application using this notebook, follow these steps:

  1. Define the migrants. Create a list of migrant objects, one for each substance you want to evaluate. You can use the migrant class to retrieve chemical properties and regulatory data from internal databases.
  2. Define the packaging. Use the Packaging3D class to define the geometry of the packaging. You can specify the dimensions and material properties of the packaging.
  3. Define the food simulant. Use the food class to define the food simulant. You can specify the type of food, the contact time, and the contact temperature.
  4. Run the simulations. Use the %, <<, and >> operators to run the simulations. The % operator injects a substance into the simulation, the << operator inherits properties from the packaging and food simulant, and the >> operator propagates the simulation.
  5. Evaluate the results. The results of the simulations are stored in the CF variable. You can use this variable to evaluate the concentration of each substance in the food simulant at the end of the contact time.

๐Ÿ“Œ Reasoning

These steps are necessary to demonstrate compliance because they ensure that all relevant factors are considered when evaluating the risk of substance migration. By following these steps, you can generate a clear and traceable record of the simulation process that can be used for validation and regulatory assessment

๐Ÿ“ Main Modules (Located in patankar/)

  • migration.py ๐Ÿ—๏ธ - Core solver using a Patankar finite-volume method for mass transfer modeling.
  • geometry.py ๐Ÿ“ - Defines 3D packaging geometries and calculates volume/surface area.
  • food.py ๐ŸŽ - Models food layers and their interactions with packaging.
  • layer.py ๐Ÿ“œ - Defines materials and layers for multilayer packaging.
  • property.py ๐Ÿ“Š - Computes physical and chemical properties (e.g., diffusion, partitioning).
  • loadpubchem.py ๐Ÿ”ฌ - Retrieves molecular properties from PubChem (cached locally) and toxicological data from ToxTree.

Why Patankar?

๐Ÿ“œ Click to expand

๐Ÿ“Œ The patankar folder is named in honor of Suhas V. Patankar, who developed and popularized the finite volume method, which this project adapts for mass transfer problems with an arbitrary number of Rankine discontinuities.

๐Ÿ“Œ The modules include a knowledge management system via extensible classes, allowing easy expansion to cover additional cases and implement new prediction methods.


๐Ÿš€ Quick Start

# Clone the repository
git clone https://github.com/ovitrac/SFPPy.git
cd SFPPy

# Install dependencies
pip install -r requirements.txt

Tip

๐Ÿงญ New to SFPPy? Start with the Wiki Pages for examples, documentation, and guidance.

All examples (example1 to example4) are provided as both Python scripts and Jupyter notebooks. For compliance workflows, notebooks are recommended as they allow you to document your assumptions, inputs, results, and interpretations in one place.

โ˜๏ธ You can run everything online for free using Google Colab. See installation instructions and the full Colab manual in the wiki.

๐Ÿ’ป Prefer local work? Use Jupyter on your machine.

๐Ÿ’ซ Need a lightweight web version? Try SFPPyLite๐ŸŒ in your browser โ€” no setup required โ€” for editing and from basic to advanced calculations. โš ๏ธ Note: Toxicological assessment via ToxTree is not available and the connectivity to PubChem is more limited.


๐Ÿ’ก Usage Snippets

SFPPy is fully object-oriented and supports multiple syntax styles, ranging from a functional approach to a more abstract, operator-driven paradigmโ€”all in a Pythonic manner. The snippets below demonstrate both approaches.

Snippet 1๏ธโƒฃ | Simple Migration Simulation

๐Ÿ“œ Click to expand
from patankar.food import ethanol  # food database
from patankar.layer import layer  # material database

# Define the food contact medium and layers
simulant = ethanol() # here a food simulant
A = layer(layername="layer 1 (contact)", D=1e-15, l=50e-6, C0=0, k=1)  # SI units
B = layer(layername="layer 2", D=(1e-9, "cm**2/s"), l=(100, "um"),k=2)
multilayer = A + B  # layer A is contact (food is on the left)

# Run solver, plot the migration kinetics CF(t) and concentration profiles in P Cx(x,t)
solution = simulant.migration(multilayer)
hCF = solution.plotCF()  # concentration kinetic in the simulant (F) for default times
hCx = solution.plotCx()  # concentration profile in the multilayer packaging
# Print in PDF and PNG, export to Excel
hCF.print("myresult")
solution.comparison.save_as_csv("myresult.csv") # CSV format
solution.comparison.save_as_excel("myresult.xlsx") # Excel format

๐Ÿ“Œ $D$ is the diffusivity, $l$ is the thickness layer, and $C_0$ is the initial concentration.

CFCx


Snippet 2๏ธโƒฃ | Retrieving Molecular Properties and Toxicological Data

๐Ÿ” Click to expand
from patankar.loadpubchem import migrant  # connect to pubchem for missing substances
from patankar.food import oliveoil,water  # food simulants 
from patankar.layer import gPET           # "glassy" PET (i.e., T<Tg)
m = migrant("bisphenol A")                # bisphenol A = BPA
# Print basic properties
print(m.M, m.logP, m.polarityindex)       # Molecular weight, logP value, polarity Index P'
print(m.smiles)                           # CC(C)(C1=CC=C(C=C1)O)C2=CC=C(C=C2)O

# Add BPA to material (P) and food simulants (F1,F2) to calculate binary properties
F1 = oliveoil(migrant=m)                  # F1 = food simulant oliver oil with BPA
F2 = water(migrant=m)                     # F2 = water with BPA
P = gPET(migrant=m)                       # P = PET with BPA
KFP1 = P.k / F1.k     # F-to-P1 partition coefficient, k= Henry-like coefficients
KFP2 = P.k / F2.k     # F-to-P2 partition coefficient, k= Henry-like coefficients
# Print partition coefficients, with k values calculated from Flory-Huggins theory
print(KFP1,KFP2)      # [0.93498524] [0.00093499]

๐Ÿ“Œ The examples show how to inject m intoย  $F$=food (various classes )ย and $P$=polymer layer (various classes) to get customized and conservative simulations for specific substances and polymers. All properties, diffusivities $D$, Henry-like coefficients $k$ย are calculated automatically based from their names.

Add toxicological data from Toxtree

from patankar.loadpubchem import migrantToxtree # combine PubChem and ToxTree
substance = migrantToxtree("formaldehyde")

output

<migrantToxtree object>
               Compound: formaldehyde
                   Name: formaldehyde
                    cid: 712
                    CAS: 50-00-0
                M (min): 30.026
                M_array: [30.026]
                formula: CH2O
                 smiles: C=O
               InChiKey: WSFSSNUMVMOOMR-UHFFFAOYSA-N
                   logP: [1.2]
              P' (calc): [3.91591487]
       ---๐Ÿ‡ช๐Ÿ‡บ EC 10/2011: ---------------
                    SML: 15.0 [mg/kg]
           part a group: of 3 substances
             EC|FCM|REF: 200-001-8|98|1726054880
      ---๐Ÿ‡บ๐Ÿ‡ธ US FCN list: ---------------
                 FCM No: 1380
               Notifier: Troy Corporation
           Manufacturer: Troy Corporation
                N. Date: 05/15/2014
   ---๐Ÿ‡จ๐Ÿ‡ณ CN GB9685-2016: ---------------
                 FCA No: 0895
          authorized in: ['coatings', 'adhesi [...] , 'paper and board']
          ---๐–ฃ‚๏ธŽ ToxTree: ---------------
            ๐–ฃ‚Toxicology: Low (Class I)
                   ๐–ฃ‚TTC: 1.5 [ยตg/kg bw/day]
                ๐–ฃ‚CF TTC: 0.09 [mg/kg food intake]
              โš ๏ธ Alert 1: Alert For Schiff Bas [...] Formation Identified
Out: <migrantToxtree: UN2209 - M=30.026 g/mol>

๐Ÿ“Œ A local installation of Toxtree (java) is included with SFPPy.

๐Ÿ“Œ The Annex I of the European FCM and Articles Regulation is integrated as a full database in SFPPy


Snippet 3๏ธโƒฃ | Defining a Custom Packaging Shape

๐Ÿ“ฆ Click to expand
from patankar.geometry import Packaging3D  # import basic shapes
pkg = Packaging3D('bottle', # bottle is a composite shape
                  body_radius=(5, 'cm'), body_height=(0.2, 'm'),
                  neck_radius=(19, "mm"), neck_height=(40, "mm"))
vol, area = pkg.get_volume_and_area() # extract volume and surface area
print("Volume (mยณ):", vol)
print("Surface Area (mยฒ):", area)

๐Ÿ“Œ The examples show how to use either pkg or its properties to achieve mass transfer simulation for a specific geometry.

๐Ÿ“Œ To efficiently simulate the migration of substances from packaging materials, SFPPy unfolds complex 3D packaging geometries into an equivalent 1D representation. This transformation assumes that substance desorption is predominantly governed by diffusion within the walls of the packaging.

๐Ÿ“Œ The geometry.py module provides tools to compute surface-area-to-volume ratios, extract wall thicknesses, and generate equivalent 1D models for mass transfer simulations.


Snippet 4๏ธโƒฃ | Using โฉ as Mass Transfer Operator in Chained Simulations

๐Ÿ“ฆ Click to expand

๐Ÿ“Œ SFPPy leverages multiple inheritance to define food contact conditions by combining storage conditions, food types, and physical properties.

๐Ÿ“Œ Additionally, three operators play a key role in SFPPyโ€™s intuitive syntax:

  • โž• for combining layers and merging results
  • โฉ for naturally representing mass transfer
  • % for introducing a new substance in the pipeline assessed

With these operators, mass transfer can be abstracted into a simple, visual representation:

  1. ๐Ÿโฉ๐ŸŽ
    (Direct transfer from green to red, symbolizing migration.)

  2. ๐Ÿโฉ๐ŸŸ โฉ๐ŸŽ
    (Includes an intermediate step, depicting progressive migration.)

  3. ๐Ÿโฉ๐ŸŸกโฉ๐ŸŸ โฉ๐ŸŽ
    (More detailed, illustrating multiple contamination stages over time.)

  4. โŒฌ%๐Ÿโฉ๐ŸŽ
    (Emphasizes new substance.)

๐ŸŒŸ SFPPy makes this abstraction possible with simple, expressive code.

from patankar.layer import gPET, PP
from patankar.food import ambient, hotfilled, realfood, fat, liquid, stacked
from patankar.loadpubchem import migrant

# Define migrant and packaging layers (ABA: PET-PP-PET)
m = migrant("limonene")
m2 = migrant("toluene") # alternative substance
A = gPET(l=(20, "um"), migrant=m, C0=0)
B = PP(l=(500, "um"), migrant=m, C0=200)  
ABA = A + B + A  # the most left layer is contact (food on the left)

# Define storage and processing conditions:
# 1:storage in stacks >> 2:hot-filled container >> 3:long-term storage of packaged food
class contact1(stacked, ambient): name = "1:setoff"; contacttime = (4, "months")
class contact2(hotfilled, realfood, liquid, fat): name = "2:hotfilling"
class contact3(ambient, realfood, liquid, fat): name = "3:storage"; contacttime = (6, "months")

# Instantiate and simulate with โฉ
medium1, medium2, medium3 = contact1(), contact2(), contact3()
m2 % medium1 >> ABA >> medium1 >> medium2 >> medium3  # Automatic chaining with m2 replacing m

# Merge all kinetics into a single one and plot the migration kinetics
sol123 = medium1.lastsimulation + medium2.lastsimulation + medium3.lastsimulation
sol123.plotCF()

CF

๐Ÿงฉ How It Works

Each contact class inherits attributes from multiple base classes, allowing flexible combinations of:

  1. ๐Ÿ“Œ Storage Conditions:

    • ambient: Defines standard storage at room temperature
    • hotfilled: Represents high-temperature filling processes
    • stacked: Models setoff migration when packaging layers are stacked
  2. ๐Ÿฅ˜ Food Types & Interactions:

    • realfood: Represents actual food matrices
    • liquid: Specifies that the food is a liquid
    • fat: Indicates a fatty food, influencing partitioning behavior

๐Ÿ“Œ By combining classes, SFPPy allows streamlined, physics-based simulations with minimal code and facilitates the global understanding of the framework by AI.


Snippet 5๏ธโƒฃ | Parameter linking ๐Ÿ”— via layerLink

๐Ÿ“ฆ Click to expand
# Any numeric property can be attached to a simulation with layerLink
from patankar.layer import layerLink
# Attach a variable function barrier thickness to ABA
fb_thickness = layerLink("l",indices=0) # index 0 = layer 1 (A) in contact with F
# Reuse ABA from Snippet 3 [...]
ABA.llink = fb_thicknesses
# Change dynamically the simulation by changing fb_thicknesses[0]
fb_thicknesses[0] = 12e-6 # 12 ยตm
medium1.lastsimulation.rerun()
# [...]

๐Ÿ“Œ Dynamic parameter binding using layerLink connections allows:

โœ… Dynamic updates of $D$, $k$, $l$, $C_0$ abd $T$ for specific layers only ( index [i] refers to the layer i+1).
โœ… Seamless integration of simulation and optimization tasks.
โœ… Robust handling of parameter uncertainties in complex simulation scenarios.


๐Ÿ“– Case Studies

The project includes four detailed examples (example1.py, example2.py, example3.py, and example4.py), showcasing real-world scenarios with various materials, substances, food types, geometries, and usage conditions.

Example 1: | Mass Transfer from โ™ถ Monolayer Materials

  • ๐Ÿฅช Simulates the migration of Irganox 1076 and Irgafos 168 from a 100 ยตm LDPEfilm into a fatty sandwich ๐Ÿฅ–over 10 days at 7ยฐC.
  • ๐Ÿ“ˆ Evaluates migration kinetics and their implications for food safety.

Example 2| Mass Transfer in โ™ป๏ธ Recycled PP Bottles

  • ๐Ÿผ Investigates toluene migration from a 300 ยตm thick recycled PP bottle into a fatty liquid food.
  • ๐Ÿ›ก๏ธ Assesses the effect of a PET functional barrier (FB) of varying thickness on reducing migration.

Example 3 | Advanced Migration Simulation โ›“๏ธ with Variants

  • ๐Ÿ“ฆ Simulates migration in a trilayer (ABA) multilayer system, with PET (A) and recycled PP (B).
  • ๐Ÿ”ฅ Evaluates migration behavior across storage with set-off, hot-filling, and long-term storage conditions.
  • โš™๏ธ Explores variants where the migrant and layer thickness are modified to assess performance.
  • ๐Ÿโฉ๐ŸŽ Example 3 showcases the mass transfer operator โฉ.

Example 4 | Parameter Fitting and Optimization โš™๏ธ

  • โœ… Fit diffusivities ($D$) and partitioning coefficients ($\frac{k}{k_0}$) from migration kinetic data ๐Ÿ“ˆ.
  • โœ… Utilize dynamic parameter linking ๐Ÿ”—๐Ÿงฒ with layerLink.
  • โœ… Integrate simulation results directly with experiments for sensitivity analysis and optimization

Caution

These examples do not discuss sources of uncertainty. Please refer to our publications and this link for details on the limitations of the presented approaches and assumptions.

๐ŸŒŸ Why SFPPy?

โœ”๏ธ Free & Open Source โ€” No licensing, no lock-in. Use it, adapt it, share it.

โœ”๏ธ AI-Ready Design โ€” Symbolic, structured data and a clean Python API make it ideal for integration with AI assistants and LLMs.

โœ”๏ธ Chemically-oriented โ€” SFPPy is designed to use chemical information and molecular models without requiring you to estimate diffusion and partitioning properties. The connection with PubChem server extends theoretically the possibilities to any single substance.

โœ”๏ธ Chemical databases โ€” Parsed US (๐Ÿ‡บ๐Ÿ‡ธ), EU (๐Ÿ‡ช๐Ÿ‡บ), and GB (๐Ÿ‡จ๐Ÿ‡ณ) databases are included in SFPPy and open source.

โœ”๏ธ Flexible Unit Handling โ€” Supports any unit via ("unit", value) or (["val1", "val2"], "unit") formats.

โœ”๏ธ Chained Operators โ€” Use >> to model automatic mass transfer and property propagation across layers and conditions. A same calculation pipe can be instantiated with different substances using the operator %: substance % food << geometry >> packaging >> step1 >> step2 >> step3...

โœ”๏ธ Minimal Code, Maximum Expressiveness โ€” Concise syntax using + to combine materials, simulate stacks, or switch storage scenarios. Combine also results with +: allsteps = step1.lastsimulation+step2.lastsimulation+step3.lastsimulation

โœ”๏ธ Powerful Abstractions โ€” Integrates with PubChem, ToxTree, built-in polymer libraries, and 3D packaging geometries.

โœ”๏ธ Built-in Visualization & Export โ€” Export results to Excel (.xlsx), CSV, PDF, PNG, and even MATLAB (if you must ๐Ÿ˜‰).

โœ”๏ธ Compliance Notebooks Included โ€” Templates and real-case notebooks guide you through regulatory testing and reporting.

โœ”๏ธ GUI-Ready Components โ€” Build your own graphical tools using included widgets and high-level interfaces.


๐Ÿ“œ License

MIT License


๐Ÿค Contributors

INRAE - Olivier Vitrac
This project is part of the SFPPy initiative, aiming to bring the SafeFoodPackaging Portal version 3 (SFPP3) to the general public.

$2025-02-12$


For further details, consult the online documentation and the release page for new capabilities.


๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ
๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐ŸŽ๐ŸŽ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐ŸŽ๐ŸŽ๐ŸŽ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿ๐Ÿ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐ŸŽ๐ŸŽ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ
๐Ÿฝ๏ธ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ
๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐ŸŽ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐ŸŽ๐ŸŽ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿ๐Ÿ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐ŸŽ๐ŸŽ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ
๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ
๐Ÿฝ๏ธ๐ŸŽ๐ŸŽ๐ŸŽ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐ŸŽ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ
๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ๐Ÿฝ๏ธ $v1.41$

Important

SFPPyLite GitHub Repository is a lightweight, browser-based sister project of SFPPy. It runs entirely in your browser (via JupyterLite) โ€” no installation, no Python backend โ€” and is ideal for editing files, exploring materials, or performing basic compliance calculations on the go.

Launch SFPPyLite


๐Ÿโฉ๐ŸŽ SFPPy: Built for AI. Ready for Simulation.

๐Ÿค– +โš–๏ธ Can robots like GPT really evaluate food contact compliance using SFPPy? Check out the intriguing answers from two GPT-powered experts here!.

page1โ˜๐ŸปClick on the image to learn more. ๐Ÿ”ฎExplore the future. Coding is a languageโ€”and with generative AI, we can bridge real-world problems to simulation-ready computer code. Python is the medium of choice, as it remains the most fluent language for AI systems.

โ•ฐโ”ˆโžคPrompts accelerate simulation prototyping and the design of complex case scenarios. Thanks to the abstract nature of this interface, there are no constraints on the level of complexity: it operates independently of the underlying mathematical or numerical methods.
Credits: Olivier Vitrac ๐Ÿค”With respect to regulatory compliance, AI assists you by generating informed scenarios and interpretationsโ€”but you remain the decision-maker.