Commit c0e546661d648dff74d8103a385d7f1a32d96a68

Authored by Didier BARRET
1 parent 35fbac1f
Exists in master

Just update the ICAO laws computed properly (without RF)

Showing 1 changed file with 32 additions and 0 deletions   Show diff stats
content.yml
... ... @@ -82,6 +82,38 @@ models:
82 82 - [ 2500.0, 438.31863895 ]
83 83 - [ 20000.0, 3335.62849772 ]
84 84  
  85 + - name: ICAO
  86 + # Slugged version of the display name above
  87 + # Only lowercase alphanumeric, starting with a letter, using - as liaison
  88 + # In other words, MUST match ^[a-z]([a-z0-9-]*[a-z0-9])?$ eg: icao-with-rfi
  89 + # MUST be unique, two models MUST NOT have the same slug.
  90 + slug: icao
  91 + # There MUST exist a python file named like this in `flaskr/laws`
  92 + # And it MUST contain a class named EmissionModel
  93 + # Please keep this lowercased, letters-only (or I will breathe fire)
  94 + file: travel_emission_lerp_fit
  95 + # Color MUST be in the hex form, without alpha
  96 + color: "#ff9934"
  97 + # The configuration that will be fed to the model.
  98 + # May be anything, really. Go bonkers!
  99 + config:
  100 + plane_emission_linear_fit:
  101 + # A coefficient applied to the distance
  102 + connecting_flights_scale: 1.05
  103 + # Radiative Forcing Index
  104 + # Multiplier after scaling
  105 + rfi: 1.0
  106 + # Flat scalar to add before scaling with laws
  107 + offset_before: 0
  108 + # Flat scalar to multiply before scaling with laws
  109 + scale_before: 1
  110 + # The travel_emission_lerp_fit uses points instead of intervals
  111 + # List of (distance in km, footprint in ??)
  112 + points:
  113 + - [0.0, 4.5735209613707415 ]
  114 + - [500.0, 84.22292312970939 ]
  115 + - [3000.0, 223.78236761444174 ]
  116 + - [ 25000.0, 1033.0117495994948 ]
85 117  
86 118 # The content is Markdown. HTML is also allowed.
87 119 # If you also want Markdown in the titles, just ask.
... ...