Source code for pySD.thermobinary_src.thermodyngen
"""Copyright (c) 2024 MPI-M, Clara Bayley----- CLEO -----File: thermodyngen.pyProject: thermobinary_srcCreated Date: Wednesday 26th March 2025Author: Clara Bayley (CB)Additional Contributors:-----Last Modified: Wednesday 26th March 2025Modified By: CB-----License: BSD 3-Clause "New" or "Revised" Licensehttps://opensource.org/licenses/BSD-3-Clause-----File Description:Thermodyanmics generator to generate winds, temperature, pressure, qvap and qcond fieldsfrom thermo and winds generators in order to create files which CLEO can read for fromfile dynamics."""
[docs]classThermodynamicsGenerator:"""create thermodynamics from winds generator (for wvel, vvel and uvel) and thermo generator (for temperature, pressure, qvap and qcond) flow field"""def__init__(self,thermogen,windsgen,):self.thermogen=thermogenself.windsgen=windsgen""" create thermodynamics from winds generator (for wvel, vvel and uvel) and thermo generator (for temperature, pressure, qvap and qcond) flow field THERMODATA is dictionary with keys: "temp", "press" "qvap" "qcond" WINDSDATA is dictionary with keys: "wwvel", "vvel" and "uvel" THERMODYNDATA is combination of two dictionaries. Note if keys are not distinct error thrown, or data from key in THERMODATA is overwritten by data from matching key in WINDDATA """defgenerate_thermodyn(self,gbxbounds,ndims,ntime):THERMODATA=self.thermogen.generate_thermo(gbxbounds,ndims,ntime)# dictWINDDATA=self.windsgen.generate_winds(gbxbounds,ndims,ntime,THERMODATA)# dictmatching_keys=set(THERMODATA.keys())&set(WINDDATA.keys())assert(notmatching_keys)and"THERMODATA and WINDDATA cannot have matching keys, unsafe overwriting"THERMODYNDATA={**THERMODATA,**WINDDATA}returnTHERMODYNDATA