reVX Max Height Exclusions
reVX supports a height_restriction mode that excludes regions
when your system height exceeds the allowed maximum height.
Use this mode when your regulations data encodes maximum allowed system height per jurisdiction, or when you want to apply a generic maximum allowed height everywhere.
Required regulations format
For rows that should drive this calculation:
Feature Typemust be"maximum height"or"maximum turbine height"(case-insensitive and ignores dashes, underscores, and spaces)Value Typeshould be"meters"(case-insensitive)Valueis the allowed maximum system height in meters
Height input modes
You must provide exactly one of the following:
system_height(directly)Both
hub_heightandrotor_diameter(tip-height computed ashub_height + rotor_diameter / 2)
Unlike normal setbacks, this mode is local-only, meaning the You must also provide at least one regulation source:
generic_height_limitfor a generic maximum allowed system heightregulations_fpathfor local jurisdiction-specific limitsOr both, in which case local jurisdictions override the generic behavior within their boundaries
Minimal config example
{
"log_level": "INFO",
"excl_fpath": "/path/to/Exclusions.h5",
"generic_height_limit": 180,
"system_height": 210,
}
Behavior is strict:
Generic-only: exclude everywhere when
system_height > generic_height_limitLocal-only: exclude a jurisdiction only when
system_height > local_max_heightGeneric + local: start from the generic result, then replace it inside local jurisdictions using the local maximum height rule