Source code for c3s_magic_wps.processes.wps_capacity_factor

import logging
import os

from pywps import FORMATS, ComplexInput, ComplexOutput, Format, LiteralInput, LiteralOutput, Process
from pywps.app.Common import Metadata
from pywps.response.status import WPS_STATUS

from .utils import (default_outputs, model_experiment_ensemble, year_ranges,
                    region, outputs_from_plot_names, check_constraints)

from .. import runner, util

LOGGER = logging.getLogger("PYWPS")


[docs]class CapacityFactor(Process): def __init__(self): self.variables = ['sfcWind'] self.frequency = 'day' inputs = [ *model_experiment_ensemble(model='MPI-ESM-MR', experiment='rcp85', ensemble='r1i1p1', max_occurs=1, required_variables=self.variables, required_frequency=self.frequency), *year_ranges((2025, 2030)), *region(-120, -75, 27, 50), LiteralInput( 'season', 'Season', abstract='Season', data_type='string', allowed_values=['DJF', 'MAM', 'JJA', 'SON'], default='DJF', ), ] self.plotlist = [] outputs = [ ComplexOutput('plot', 'Capacity Factor of Wind Power plot', abstract='Ratio of average estimated power to theoretical maximum power.', as_reference=True, supported_formats=[Format('image/png')]), ComplexOutput('data', 'Capacity Factor of Wind Power data', abstract='Ratio of average estimated power to theoretical maximum power.', as_reference=True, supported_formats=[Format('application/zip')]), ComplexOutput('archive', 'Archive', abstract='The complete output of the ESMValTool processing as an zip archive.', as_reference=True, supported_formats=[Format('application/zip')]), *default_outputs(), ] super(CapacityFactor, self).__init__( self._handler, identifier="capacity_factor", title="Capacity factor of wind power", version=runner.VERSION, abstract=("The goal of this diagnostic is to compute the wind capacity factor, taking as input the daily " "instantaneous surface wind speed, which is then extrapolated to obtain the wind speed at a " "height of 100 m as described in Lledo (2017). " "The estimated calculation time of this process is 1 minute for the default values supplied."), metadata=[ Metadata('ESMValTool', 'http://www.esmvaltool.org/'), Metadata( 'Documentation', 'https://esmvaltool.readthedocs.io/en/v2.0a2/recipes/recipe_capacity_factor.html', role=util.WPS_ROLE_DOC), ], inputs=inputs, outputs=outputs, status_supported=True, store_supported=True) def _handler(self, request, response): response.update_status("starting ...", 0) # build esgf search constraints constraints = dict( model=request.inputs['model'][0].data, experiment=request.inputs['experiment'][0].data, ensemble=request.inputs['ensemble'][0].data, ) options = dict( start_longitude=request.inputs['start_longitude'][0].data, end_longitude=request.inputs['end_longitude'][0].data, start_latitude=request.inputs['start_latitude'][0].data, end_latitude=request.inputs['end_latitude'][0].data, season=request.inputs['season'][0].data.lower(), ) # generate recipe response.update_status("generate recipe ...", 10) recipe_file, config_file = runner.generate_recipe( workdir=self.workdir, diag='capacity_factor', constraints=constraints, options=options, start_year=request.inputs['start_year'][0].data, end_year=request.inputs['end_year'][0].data, output_format='png', ) # recipe output response.outputs['recipe'].output_format = FORMATS.TEXT response.outputs['recipe'].file = recipe_file # run diag response.update_status("running diagnostic (this could take a while)...", 20) result = runner.run(recipe_file, config_file) response.outputs['success'].data = result['success'] # log output response.outputs['log'].output_format = FORMATS.TEXT response.outputs['log'].file = result['logfile'] # debug log output response.outputs['debug_log'].output_format = FORMATS.TEXT response.outputs['debug_log'].file = result['debug_logfile'] if result['success']: try: self.get_outputs(result, response) except Exception as e: response.update_status("exception occured: " + str(e), 85) else: LOGGER.exception('esmvaltool failed!') response.update_status("exception occured: " + result['exception'], 85) response.update_status("creating archive of diagnostic result ...", 90) response.outputs['archive'].output_format = Format('application/zip') response.outputs['archive'].file = runner.compress_output( os.path.join(self.workdir, 'output'), os.path.join(self.workdir, 'capacity_factor_result.zip')) response.update_status("done.", 100) return response
[docs] def get_outputs(self, result, response): # result plot response.update_status("collecting output ...", 80) response.outputs['plot'].output_format = Format('application/png') response.outputs['plot'].file = runner.get_output(result['plot_dir'], path_filter=os.path.join('capacity_factor', 'main'), name_filter="capacity_factor*", output_format="png") response.outputs['data'].output_format = FORMATS.NETCDF response.outputs['data'].file = runner.get_output(result['work_dir'], path_filter=os.path.join('capacity_factor', 'main'), name_filter="capacity_factor*", output_format="nc")