Release Notes
Changelog
All major changes are listed here.
1.0.0 (2025-06-20) docs
PyWAsP 1.0.0 is a major release that introduces a significant number of new features, improvements, and breaking changes aimed at improving the user experience, consistency, and performance. The API has been cleaned up, and many functions have been renamed for clarity. This version also introduces a new configuration system and enhanced energy yield calculation capabilities.
Dependency updates for 1.0
Supports Python 3.11 to 3.13
Supports numpy 1.26 to 2.2 (1.0 will be last version to support numpy 1)
Supports PyWake 2.6
Supports windkit 1.0
Code restructuring and API cleanup
Updated user config: The user configuration has migrated from
pywasp.cfgto a pydantic-based settings system. Users must create apywasp_config.tomlfile or a.envfile, or define environment variables. See the User Configuration documentation for details. A helper functionpywasp.user_config.create_config_interactively()can be used to create a new configuration file interactively.API Renaming and Cleanup:
The
pywasp.configmodule is renamed topywasp.user_config.pywasp.wasp.bwc_from_timeseriesis renamed topywasp.wasp.bwc_from_tswc.pywasp.io.rastermap_to_vectormapis renamed topywasp.io.raster_to_vector.pywasp.io.vectormap_to_rastermapis renamed topywasp.io.vector_to_raster.
Argument Renaming for Consistency:
The
return_site_factorsargument is renamed toreturn_site_effectsin alldownscale,predict, andgeneralizefunctions.Arguments for the number of wind speed bins (e.g.,
nwsbins,n_bins) are standardized ton_wsbins.Arguments for the number of sectors (e.g.,
nsec,nwd) are standardized ton_sectors.The
ws_bin_widthargument is renamed towsbin_width.In
pywasp.wasp.gross_aep,interpolateis renamed toair_density_correction, andair_densityis renamed toreference_air_density.In
pywasp.io.vector_to_raster, argumentsxmin,ymin,xmax,ymaxare replaced by a singleboundstuple.
Removed Functionality:
The following functions and classes have been removed from the public API:
pywasp.io.rastermap_to_waspformat,pywasp.io.vectormap_to_waspformat,pywasp.wasp.wtg_to_pywake,pywasp.lincom.grid_from_wasp_rastermap,pywasp.io.WaspVectorMap, andpywasp.io.WaspRasterMap.
Air density correction:
In
pywasp.wasp.gross_aep,pywasp.wasp.potential_aep, a newair_density_correctionargument was added, which defaults to"infer", which tries to infer the best air density correction method based on the WTG’s control system.pywasp.io.raster_to_vectornow returns polygons instead of change lines for roughness or landcover maps.Landcover tables are no longer required for
pywasp.io.raster_to_vectorandpywasp.io.vector_to_raster.
Metadata Changes:
The
_AEPsuffix in metadata attributes from AEP functions is now lowercase (_aep).The metadata variable
aep_deficitis renamed topotential_aep_deficit.
New features
New energy yield calculation functions
New function
pywasp.wasp.net_aepto calculate the Net Annual Energy Production (AEP) by applying losses from a loss table.New function
pywasp.wasp.estimate_sensitivity_factorto estimate the sensitivity factor of a wind effect to AEP.New function
pywasp.wasp.px_aepto calculate the AEP level reached with a given probability.
Landcover and I/O
New function
pywasp.landcover.convert_to_classesthat adds new classes to a landcover raster map using tree heights and leaf area indices.New function
pywasp.io.polygons_to_linesthat converts polygons to lines, approximately 100x faster than thewindkitequivalent.pywasp.wasp.TopographyMapnow acceptsGeoDataFrames with Polygons.
Full list of changes
New function
pywasp.landcover.convert_to_classesthat adds new classes to a landcover raster map using tree heights and leaf area indices raster maps.New keyword arugment
offsetinbwc_resample_sectorsthat allows rotating a histogram with a specified number of degreesBug fix in
interpolate_gwc: variables “m1”, “m3”, “fgtm” were not always removed. They are private variables that should never be visible to the user.get_air_density can now deal with larger than RAM memory dataset as input. The custom dataset can also be in any projection, whereas before it assumed it was always in latlon
Bug fix in
get_climate, did not work when bbox crosses dateline”New function
polygons_to_lines, that convert polygons to lines similar to the function windkit.poly_to_lines but approximately 100x times faster.In
interpolate_gwcfor interpolation of single point to many using keyword engine=”windkit”, could give wrong results when the output structure was not of the same spatial structure as the input spatial structure.PyWake is pinned to version 2.6.8 (commit 5562afda7f272ab029bf057617557c5de14416e5).
New functionality available,
potential_aepandwind_farm_flow_mapfunctions can now correct for site-specific air density conditions.In
gross_aep,potential_aepandwind_farm_flow_map, the argumentair_density_correctionis set to True by default.potential_aepcan now take different types of WTGs within the same wind farm group. Following the same structure asgross_aep.TopographyMap now allows input of Polygon dataframes, two extra keyword arguments
check_errorsandexternal_roughnessdetermine the behaviour when dealing with these maps. The external roughness length specifies the roughness outside the polygons in the provided map.
Breaking changes
renamed
pw.wasp.bwc_from_timeseriestopw.wasp.bwc_from_tswcrenamed
pw.rastermap_to_vectormaptopw.raster_to_vectorrenamed
pw.vectormap_to_rastermaptopw.vector_to_raster.removed
pw.rastermap_to_waspformatfrom public namespaceremoved
pw.vectormap_to_waspformatfrom public namespaceremoved
pw.WaspVectorMapfrom public namespaceremoved
pw.WaspRasterMapfrom public namespaceremoved
pw.lincom.grid_from_wasp_rastermapfrom public namespaceArgument
return_site_factorshas been renamed toreturn_site_effectsin the following functions:downscaledownscale_from_site_effectsdownscale_from_geostrophic_and_site_effects_to_bwcdownscale_from_geostrophic_and_site_effects_to_wwcpredict_bwcpredict_bwc_from_site_effectspredict_wwcpredict_wwc_from_site_effectsgeneralize_from_site_effects_to_geowcgeneralize
Argument
nwsbins,nws,n_binshas been renamed ton_wsbinsin the following functions:bwc_from_tswcstability_histogramcreate_histogram_z0
Argument
nsec,nsecs,nwd,nbinshas been renamed ton_sectorsin the following functions:bwc_from_tswcstability_histogramcreate_histogram_z0get_elev_roseget_rou_roseget_site_effectsget_site_effects_cfdweibull_fitgeneralizepredict_wwcpredict_bwc
Argument
ws_bin_widthhas been renamed towsbin_widthin the following functions:bwc_from_tswcstability_histogramcreate_histogram_z0
Argument
interpolateingross_aephas been renamed toair-density_correction,air_densityhas been renamed toreference_air_density._AEPsuffix in attribute names of the metadata frompywasp.wasp.aep,pywasp.wasp.aep_losses.py,pywasp.wasp.aep_uncertainty.pyhave been changed to_aepMetadata variable name
aep_deficithas been renamed topotential_aep_deficitNo longer require landcover tables for
raster_to_vectorandvector_to_rasterReplaced arguments
xmin,ymin,xmax,ymaxinvector_to_rastertobounds(tuple or BBox of same values)raster_to_vectornow returns polygons instead of change lines when the input is a roughness or landcover map.Renamed
pywasp.configtopywasp.user_configto avoid confusion with thepywasp.wasp.Configclass.The “Roaming” AppData dir is now used on Windows. By default the config and app data files are stored in
"C:\\Users\\<user_name>\\AppData\\Roaming\\DTU Wind Energy\\pywasp"Removed function
pywasp.wasp.wtg_to_pywake(from public namespace)Replaced the gwc interpolation function in
pw.wasp.downscaleandpw.wasp.downscale_from_site_effectswith the newwk.spatial_interpolate_gwcfunction.This replaces the legacy gwc interpolaters in pywasp
With the update only “point” targets are supported for “natural” interpolation, while “nearest”, “linear”, and “cuboid” still works for all spatial structures.
Changed the
interp_methoddefault to “nearest” instead of “given”.
PyWAsP user configuration has migrated to using pydantic settings. This means that your pywasp.cfg will no longer work. You will need to either create a pywasp_config.toml file, a dotenv file, or define environment variables with your configuration settings for PyWAsP to import successfully. You can find the necessary information in the PyWAsP License and User Configuration documentation.
New energy yield calculation functions:
New function
pywasp.wasp.net_aepto calculates the Net Annual Energy Production (AEP) by applying the losses from a loss table.New function
pywasp.wasp.estimate_sensitivity_factorto estimate the sensitivity factor of wind effect to AEP for a given predictive wind climate and wtg.New function
pywasp.wasp.px_aepto calculate the Annual Energy Production (AEP) level reached with a given probability.
0.7.0 (2024-06-04) docs
PyWAsP 0.7.0 is a major release with new features, improvements, and bug fixes.
Dependency updates
Following SPEC 0 this release supports python 3.10-3.12 and numpy 1.24-1.26.
Windkit =0.8.0 is required
PyWake is pinned to version 2.5.0 (commit 36da70b2335321e435194d277511c17d8f012571).
New features
New climate extrapolation functions
New function
pywasp.wasp.predict_wwcto predict a weibull wind climate from a binned wind climate without using a generalized wind climate lookup-table, thus reducing interpolation errorsNew function
pywasp.wasp.predict_bwc, same as above but to predict a binned wind climate instead.New function
pywasp.wasp.predict_wwc_from_site_effects, same aspywasp.wasp.predict_wwcbut using the outputs of calls topywasp.wasp.TopographyMap.get_site_effectsinstead of a mapfile.New function
pywasp.wasp.predict_bwc_from_site_effects, same aspywasp.wasp.predict_bwcbut using the outputs of calls topywasp.wasp.get_site_effectsinstead of a mapfile.New function
pywasp.wasp.generalize_from_site_effects, same aspywasp.wasp.generalizebut using the output of a call topywasp.wasp.TopographyMap.get_site_effectsinstead of a mapfile.New function
pywasp.wasp.generalize_from_site_effects_to_geowc, generalize a binned geostrophic wind climate from a site effects dataset.New function
pywasp.wasp.downscale_from_geostrophic_and_site_effects_to_bwc, downscale a binned geostrophic wind climate from a site effects dataset and geostrophic binned wind climate
BWC resampling functions added
New function
pywasp.wasp.bwc_resample_like, to resample a binned wind climate using a different sector or wind speed bin structure.New function
pywasp.wasp.bwc_resample_sectors, to resample a binned wind climate using a different number of sectors.New function
pywasp.wasp.bwc_resample_wsbins_like, to resample a binned wind climate using a different wind speed bin structure.
I/O added to TopographyMap and new CFD data-extraction method
New methods
.saveand.loadadded topywasp.wasp.TopographyMapto save and load the topography map to/from a ZipFile Archieve.pywasp.wasp.get_site_effects_cfdalso accepts a list of xr.datasets (read by theread_cfdresfunction in windkit) as input. It will extract the site effects in the order specified in the list.
Support for custom root CA certificates
In case of running
pywaspunder a proxy or another similar network setup, the filepath to a root CA certificate can be set onpywaspso it can connect to the licensing server.
Improvements
For typical usage
pywasp.wasp.TopographyMap.get_site_effectsis 2-6 times fasterFor typical usage
pywasp.io.rastermap_to_vectormapis 15-30 times fasterFor typical usage
pywasp.io.vectormap_to_rastermapis 15-30 times fasterFor typical usage
pywasp.io.vectormap_to_waspformatis 2-20 times fasterFor typical usage
pywasp.io.waspformat_to_vectormapis 2-80 times fasterFor typical usage
pywasp.wasp.TopographyMapis >1000 times fasterImproved input error checking in
pywasp.wasp.generalize()Improved input error checking in
pywasp.wasp.generalize(), check that thegen_roughnessesandgen_heightshave at least 2 entries, as required by the WAsP core.Improved input error checking in
pywasp.wasp.TopographyMap: make sure that all your landcover lines have a corresponding entry in the landcover table.More accurate setting of generalized heights and roughness using the function
pywasp.wasp.set_hgtsandpywasp.wasp.set_z0s. Now a percentile mapping technique is used when the number of heights or roughnesses exceeds the maximum number of entries allowed in agwc(5).More descriptive error codes when having problems reading a pywasp config file.
TopographyMap now throws an error when the lctable has more than 100 entries. Before this condition was unhandled and could crash the fortran.
pywasp.wasp.Configobject now is read only and does not do any modifications of the fortran behaviour itself (before it was creating lookup tables and setting some parameters on each update of conf.terrain.)
Deprecations
WaspVectorMap will be deprecated
windkit.WindTurbinesdeprecated for AEP functions. Use a dict of WTGxr.Dataset’s and a wind_turbinexr.Datasetinstead.
Changes
pywasp.wasp.generalizenow usespywasp.wasp.generalize_from_site_effectsinstead of duplicating codepywasp.wasp.interpolate_gwc-> Can now also interpolate geostrophic wind climates. Code from windkit has been implemented in pywasp and can be used by using the argumentengine="windkit".pywasp.wasp.TopographyMap.get_site_effectsnow reports an extra variableflow_sep_height, which can report the height where flow separation is expected based on slopes exceeding some given slope. Theflow_sep_heightis only active when usingconf.terrain[64] == 1.In all the downscale and generalize function an additional variable
flow_sep_heightcan be used. This is added to the displacement height that is used for transformation of the wind climate. If this data array is not present on thesite_effectsdataset, it is added automatically.Using a point dataset with multiple heights now gives a warning instead of a ValueError, because it is typically used in combination with
pywasp.wasp.interpolate_gwcand interp_method=”given” where it is fine to have more than one height.
Breaking changes
pywasp.wasp.get_wasp_downrenamed topywasp.wasp.downscale_from_site_effectsChanged order of arguments in
pywasp.wasp.generalize_and_downscaleto bwc, topo_map, output_locs for consistency with generalize and downscalepywasp.wasp.set_hgts-> returns slightly more accurate generalized roughnesses whenheight_fromandheight_toare providedpywasp.wasp.set_z0s-> returns slightly more accurate generalized roughnesses whenz0meso_fromandz0meso_toare providedpywasp.wasp.calc_temp_scalethe output of the dataset now returns the correct nameustar_over_pblhpywasp.wasp.stability_histogramnow produces a dataset with the more correct namesmean_pblh_scale_landandmean_pblh_scale_seainstead ofmean_pblh_landandmean_pblh_sea. See for more details: https://link.springer.com/article/10.1007/s10546-023-00803-3genwc_interpargument indownscaleandgeneralizehas been renamed tointerp_methodpywasp.wasp.gross_aep,pywasp.wasp.potential_aep, andpywasp.wasp.wind_farm_flow_mapnow uses a dict{"wtg_key1": wtg1, "wtg_key2": wtg2}and a turbinesxarray.Datasetinstead of awindkit.WindTurbinesobject. WTGs are mapped to turbines via the wtg_keys present in both the dict and the turbines dataset.
0.6.0 (2023-11-30)
Dependency updates
Following SPEC 0 this release supports python 3.10-3.12 and numpy 1.22-1.26. Due to build issues with numpy 1.26, neither it nor python 3.12 are supported on Windows.
Windkit =0.7.0 is required
PyWake is now pinned to version 2.5.0 (commit 36da70b2335321e435194d277511c17d8f012571).
New features
Support for WAsP CFD results
New function
pywasp.wasp.get_site_effects_cfdinterpolates the speedups and turnings from awindkitCFD volumexarray.Dataset.pywasp.wasp.generalize,pywasp.wasp.downscale, andpywasp.wasp.generalize_and_downscalenow have an extracfd_volumeargument, which can be used to pass in WAsP CFD results that will be used for the site effects.
Breaking changes
pywasp.wasp.wind_farm_flow_mapnow requires awk.WindTurbinesobject, not separate wtg and locations arguments.pywasp.wasp.wind_farm_flow_maprequires the new argumentoutput_locs, which should be a “cuboid”xr.Dataset, which is where the flow map will be calculated.output_locsshould be covered by the predicted wind climate object.
Changes
Interpolation errors have been eliminated during the downscale step when using
pywasp.wasp.generalize_and_downscale, by including the output heights in the generalize step.Update ERA5 mesoclimate netCDF file according to latest revision of Using Observed and Modelled Heat Fluxes for Improved Extrapolation of Wind Distributions.
pywasp.wasp.gross_aepandpywasp.wasp.potential_aepcan now accept awk.WindTurbinesobject to thewtgargument. This allows for different WTGs to be used for different turbine locations.Added
interp_methodargument topywasp.wasp.get_climate, “nearest” is used by default
Improvements
Reduction of approximately 50% for calculations of wake-affected AEP.
Bug Fixes
PyWAsP on windows now can use the license.windenergy.dtu.dk licensing server.
Interpolation of
mean_dgdzandmean_dgdz_dirare now carried out by interpolating the vector components, when a method other than"nearest"is used.
Deprecations
Deprecated options “PARK2_onshore_with_blockage” and “PARK2_offshore_with_blockage” in
pywasp.wasp.wind_farm_flow_mapandpywasp.wasp.potential_aep. Use, custom PyWake wind_farm_models to build complex models instead.
0.5.2 (2023-06-21)
Changes
Dependency updates: Python 3.8 & numpy 1.21 no longer supported following NEP 29. Windkit 0.6.3 is now required to support the
regulation_typevariable forwtgobjects.pywasp.wasp.TopographyMap.get_rou_rosenow allows to add displacements to the orographic grid, using the newelev_roseargument. Ifelev_roseis None, a dummy elevation rose is created.pywasp.wasp.interpolate_gwcnow returns an interpolated generalized wind climate dataset with height coordinates.
Setting
download_prompt=Falseanddownload_global_nc_filesin the pywasp.cfg file, will not prevent any text from showing when importing PyWAsP. Previously it would print a message about how to get the files on each import. If you need the files, you will be prompted to download at that time. See the User Configuration Documentation to see all options of the config file.
Improvements
Update netCDF file with CFSR baroclinicity information. The data is the same but the data variable names are updated. It does not affect the behavior.
pywasp.wasp.interpolate_gwcwill issue a warning if it is used with datasets with geographical coordinates for “nearest” and “natural” methods.
Bug Fixes
pywasp.io.rastermap_to_vectormapwill only raises errors related with the parameterdzwhen the raster map type iselevation.pywasp.wasp.aep.gross_aepincorrectly assumed most wind turbines were stall regulated. This means that when using theinterpolation=Trueoption, that incorrect air density corrections were applied. This has been fixed by an update in WindKit that requires thecontrol_systemvariable to be defined on a wind turbine generator. This value is now used to apply the correct air density correction to the power curves.
0.5.1 (2023-04-19)
New Features
pywasp.wasp.get_climate_by_configtakes apywasp.wasp.Configobject and returns anxarray.Datasetmeso climate object compatible with the profile model set in the config.
Changes
pywasp.wasp.get_climateargumentsstab_sourceandbaro_sourcenow both allow forNoneto be set. This creates a dataset with 0-valued fields for the given source.
Improvements
Update netCDF file with CFSR baroclinicity information to version 3. The data is the same, but the data variable names are updated. This does not affect the behavior.
Bug Fixes
Fixed license check error for new version of DTU License server
Corrected import of
combine_bwcsinpywasp.wasp.cross_predict.pywasp.wasp.interpolate_gwcnow returns an interpolated generalized wind climate dataset with height coordinates. This makes it more robust to different spatial structures of generalized wind climates and output_locs, when used for downscaling.
Deprecations
getparandsetparmethods ofpywasp.wasp.config.Configobjects are deprecated. Use square brackets instead.