1.3.3.7. Base classes and utilities¶
1.3.3.7.1. Introduction¶
As the api documentation states, the vacumm.misc.bases.Object
provides
convenient features for logging and configuration management.
This tutorial aims to show you these features and how to customize though most users will only need to use them as such.
In this tutorial we will define a ‘MyObject’ class which inherit from
vacumm.misc.bases.Object
as you will do in your code to take advantage
of this class.
One of the mecanism of this class is to allow developpers to execute things when the class is defined (when its module is imported). The goal of these things may be various but the default goal is to allow a class to be parametrized using a configuration file.
If you also need to do things at class initialization, below is the way you may
redefine the vacumm.misc.bases.Object.init_class()
method:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from vacumm.misc.bases import Object
class MyObject(Object):
@classmethod
def init_class(cls, name, bases, dct):
# do your class related stuff here
print 'stack trace:'
print cls.stack_trace()
print
print 'default config:'
print cls.get_default_config()
def __init__(self):
Object.__init__(self)
# ...
def main():
o = MyObject()
if __name__ == '__main__':
main()
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: False. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: boolean(default=False). Switching to default value: False.
warn(warnmsg.format(**locals()))
stack trace:
Stack trace (innermost last):
<module> (../../../scripts/tutorials/misc.bases.py:6)
MyObject.__init__ (/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/bases.py:382)
MyObject._init_class (/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/bases.py:523)
MyObject.init_class (../../../scripts/tutorials/misc.bases.py:12)
default config:
{'cfg_debug': 'False', 'log_obj_stats': 'False'}
1.3.3.7.2. Logging features¶
The vacumm.misc.bases.Object
and its instances have logging capabilities
through two vacumm.misc.log.Logger
objects, one used when logging methods
are called from the class and another one dedicated to each instance of this class.
The following example introduce the basic usage of these features.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from vacumm.misc.bases import Object
class MyObject(Object):
pass
def main():
MyObject.debug('Call logging classmethod debug')
MyObject.info('Call logging classmethod info')
MyObject.set_loglevel('debug')
MyObject.get_logger().set_format('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
MyObject.debug('Call logging classmethod debug')
# Show the default logging configuration
obj = MyObject()
obj.notice(
'These are the default instance logging configuration:\n'
' level: %r (%r)\n'
' format: %r\n'
' date format: %r',
obj.get_loglevel(), obj.get_logger().get_level(),
obj.get_logger().get_format(),
obj.get_logger().get_date_format()
)
# Configure logging at init
obj = MyObject(
logger_level='debug',
logger_format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
logger_date_format='%H:%M:%S'
)
obj.notice(
'Customizing instance logging configuration:\n'
' level: %r (%r)\n'
' format: %r\n'
' date format: %r',
obj.get_loglevel(), obj.get_logger().get_level(),
obj.get_logger().get_format(),
obj.get_logger().get_date_format()
)
obj.debug('debug message')
obj.verbose('verbose message')
obj.info('info message')
obj.notice('notice message')
obj.warning('warning message')
obj.error('error message')
obj.critical('critical message')
try: 0 / 0
except Exception, e:
obj.exception('Division by 0 failed !')
MyObject.verbose('\n MyObject.get_logger(): %r\n MyObject.get_class_logger(): %r\n MyObject.logger: %r', MyObject.get_logger(), MyObject.get_class_logger(), MyObject.logger)
obj.verbose('\n obj.get_logger(): %r\n obj.get_class_logger(): %r\n obj.logger: %r', obj.get_logger(), obj.get_class_logger(), obj.logger)
obj.set_loglevel('notice')
obj.notice('the loglevel is now %r', obj.get_loglevel())
obj.verbose(
'you will not see this message as it is emitted with a "verbose" level and '
'the logger is now configured with a %r minimum level', obj.get_loglevel())
obj.notice('Using the config method:\n obj.logger.config(): %s\n MyObject().logger.config(): %s\n MyObject(logger_config=obj).logger.config(): %s',
obj.logger.config(), MyObject().logger.config(), MyObject(logger_config=obj).logger.config())
if __name__ == '__main__':
main()
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: False. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: boolean(default=False). Switching to default value: False.
warn(warnmsg.format(**locals()))
[MyObject INFO] Call logging classmethod info
2019-01-21 15:24:44 CET - MyObject - DEBUG - Call logging classmethod debug
[MyObject NOTICE] These are the default instance logging configuration:
level: 'INFO' (20)
format: '[%(asctime)s %(name)s %(levelname)s] %(message)s'
date format: '%Y-%m-%d %H:%M:%S %Z'
[MyObject DEBUG] Loaded <class '__main__.MyObject'> configuration:
section: MyObject
nested: None
from: None
loaded:
cfg_debug = False
log_obj_stats = False
[MyObject NOTICE] Customizing instance logging configuration:
level: 'DEBUG' (10)
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
date format: '%H:%M:%S'
[MyObject DEBUG] debug message
[MyObject VERBOSE] verbose message
[MyObject INFO] info message
[MyObject NOTICE] notice message
[MyObject WARNING] warning message
[MyObject ERROR] error message
[MyObject CRITICAL] critical message
[MyObject ERROR] Division by 0 failed !
Traceback (most recent call last):
File "../../../scripts/tutorials/misc.bases.logging.py", line 52, in main
try: 0 / 0
ZeroDivisionError: integer division or modulo by zero
2019-01-21 15:24:44 CET - MyObject - VERBOSE -
MyObject.get_logger(): <vacumm.misc.log.Logger object at 0x7f7d7f7c6350>
MyObject.get_class_logger(): <vacumm.misc.log.Logger object at 0x7f7d7f7c6350>
MyObject.logger: <property object at 0x7f7d7fc32f18>
[MyObject VERBOSE]
obj.get_logger(): <vacumm.misc.log.Logger object at 0x7f7d7f7c6910>
obj.get_class_logger(): <vacumm.misc.log.Logger object at 0x7f7d7f7c6350>
obj.logger: <vacumm.misc.log.Logger object at 0x7f7d7f7c6910>
[MyObject NOTICE] the loglevel is now 'NOTICE'
[MyObject NOTICE] Using the config method:
obj.logger.config(): {'date_format': '%H:%M:%S', 'format': '%(asctime)s - %(name)s - %(levelname)s - %(message)s', 'level': 25}
MyObject().logger.config(): {'date_format': '%Y-%m-%d %H:%M:%S %Z', 'format': '[%(asctime)s %(name)s %(levelname)s] %(message)s', 'level': 20}
MyObject(logger_config=obj).logger.config(): {'date_format': '%H:%M:%S', 'format': '%(asctime)s - %(name)s - %(levelname)s - %(message)s', 'level': 25}
1.3.3.7.3. Configuration features¶
vacumm.misc.bases.Object
may use configurations features provided by the
config
module.
When your module containing the vacumm.misc.bases.Object
subclass is
loaded, a specification file with the module name with the ‘.py’ extension replaced
with the ‘.ini’ extension is looked up and the default configuration is loaded
from the specification defaults.
The way you may change your class’s specification file is to redefine the
vacumm.misc.bases.Object.get_config_spec_file()
method, the section name
defaults to the class name, you may also change it by redefining the
vacumm.misc.bases.Object.get_config_section_name()
method.
The vacumm.misc.bases.Object.get_default_config()
method will return the
default configuration mentionned above.
The vacumm.misc.bases.Object.apply_config()
method will be called each time a
configuration is loaded using the vacumm.misc.bases.Object.load_config()
method,
you may also want to redefine.
Logging configuration related to your class may be customized using a nested section named ‘Logger’.
Specification file:
[MyObject]
afloat = float(default=0.0)
somefloats = floats(default=list())
Configuration file:
[MyObject]
afloat = 42.0
somefloats = 0, 42.0
[[Logger]]
level = 'debug'
format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
date_format = '%H:%M:%S'
# Warning:
# Despite indentation, any options that appear below will be loaded as
# Logger subsection option... So you have to always write subsections after
# a section options
Code using these specification and configuration:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os, sys
from vacumm.misc.bases import Object
class MyObject(Object):
# These are the defaults but in case you want to change these behavior...
@classmethod
def get_config_spec_file(cls):
return os.path.splitext(__file__)[0] + '.ini'
# => misc.bases.config.ini
@classmethod
def get_config_section_name(cls):
# => MyObject
return cls.__name__
def main():
obj = MyObject()
cfg = obj.get_default_config()
obj.info('Default configuration:\n%s', obj.pformat(cfg.dict()))
cfgfile = os.path.splitext(__file__)[0] + '.cfg'
cfg = obj.load_config(cfgfile)
obj.info('Loaded configuration (%s):\n%s', cfgfile, obj.pformat(cfg.dict()))
obj.debug('Debug message after configuration has been loaded')
if __name__ == '__main__':
main()
The outputs of this code are:
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: False. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: boolean(default=False). Switching to default value: False.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: 0.0. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: float(default=0.0). Switching to default value: 0.0.
warn(warnmsg.format(**locals()))
[MyObject INFO] Default configuration:
{ 'afloat': '0.0',
'cfg_debug': 'False',
'log_obj_stats': 'False',
'somefloats': []}
[MyObject INFO] Loaded configuration (../../../scripts/tutorials/misc.bases.config.cfg):
{ 'MyObject': { 'Logger': { 'date_format': '%H:%M:%S',
'format': '%(asctime)s - %(name)s - %(levelname)s - %(message)s',
'level': 'debug'},
'afloat': '42.0',
'somefloats': ['0', '42.0']},
'afloat': '0.0',
'cfg_debug': 'False',
'log_obj_stats': 'False',
'somefloats': []}
Note that MyObject attributes and logger have been changed by the loaded configuration.
1.3.3.7.4. Debugging features¶
The following example shows some method calls you may use when writing your code to trace or debug it.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import cdms2, numpy
from vacumm.misc.axes import create_time, create_lat, create_lon
from vacumm.misc.bases import Object
class MyObject(Object):
def do_something(self):
num, den = 0, 0
try: num / den
except: self.exception('Division by 0 failed !\n%s', self.exception_trace())
self.info('The function emitting this message is: %s', self.func_name())
self.info('The stack trace of the function emitting this message is:\n%s', self.stack_trace())
t = create_time(['1900-01-01 00:00:00', '9999-12-31 23:59:59'])
y = create_lat(range(-90, 90))
x = create_lon(range(-180, 180))
v = cdms2.createVariable(numpy.random.ranf((len(t), len(y), len(x))), axes=[t, y, x], id='data', long_name='random data')
self.info('Time:\n%s', self.describe(t))
self.info('Latitude:\n%s', self.describe(y))
self.info('Longitude:\n%s', self.describe(x, stats=True))
self.info('Variable:\n%s', self.describe(v, stats=True))
def main():
obj = MyObject()
obj.do_something()
if __name__ == '__main__':
main()
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: False. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: boolean(default=False). Switching to default value: False.
warn(warnmsg.format(**locals()))
[MyObject ERROR] Division by 0 failed !
--------------------------------------------------------------------------------
Exception details, locals by frame, innermost last
--------------------------------------------------------------------------------
File "../../../scripts/tutorials/misc.bases.debug.py", line 30, in <module>
main()
MyObject <class 'vacumm.misc.bases.Class'> = <class '__main__.MyObject'>
Object <class 'vacumm.misc.bases.Class'> = <class 'vacumm.misc.bases.Object'>
--------------------------------------------------------------------------------
File "../../../scripts/tutorials/misc.bases.debug.py", line 27, in main
obj.do_something()
obj <class '__main__.MyObject'> = <__main__.MyObject object at 0x7fa4f51aa190>
--------------------------------------------------------------------------------
File "../../../scripts/tutorials/misc.bases.debug.py", line 13, in do_something
except: self.exception('Division by 0 failed !\n%s', self.exception_trace())
den <type 'int'> = 0
num <type 'int'> = 0
self <class '__main__.MyObject'> = <__main__.MyObject object at 0x7fa4f51aa190>
--------------------------------------------------------------------------------
Traceback (most recent call last):
File "../../../scripts/tutorials/misc.bases.debug.py", line 12, in do_something
try: num / den
ZeroDivisionError: integer division or modulo by zero
--------------------------------------------------------------------------------
Traceback (most recent call last):
File "../../../scripts/tutorials/misc.bases.debug.py", line 12, in do_something
try: num / den
ZeroDivisionError: integer division or modulo by zero
[MyObject INFO] The function emitting this message is: do_something
[MyObject INFO] The stack trace of the function emitting this message is:
Stack trace (innermost last):
<module> (../../../scripts/tutorials/misc.bases.debug.py:30)
main (../../../scripts/tutorials/misc.bases.debug.py:27)
MyObject(140346463527312).do_something (../../../scripts/tutorials/misc.bases.debug.py:15)
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/cf.py:981: VACUMMWarning: Error while load cached cf specs:
vcwarn('Error while load cached cf specs: '.format(e.args))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['temp', 'temperature', 'TEMP']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Temperature. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['sea_water_temperature', 'sea_water_potential_temperature']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: degrees_celsius. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: generic. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: option('generic','ocean','atmos','waves','land',default='generic'). Switching to default value: generic.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: thermal. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: isa. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=isa). Switching to default value: isa.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['lon']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list(lon)). Switching to default value: ['lon'].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['lat']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list(lat)). Switching to default value: ['lat'].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['time']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list(time)). Switching to default value: ['time'].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Potential temperature. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_potential_temperature. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['sal', 'psal', 'salinity', 'SAL']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Salinity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: PSU. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: haline. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea surface temperature. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['sea_surface_temperature', 'surface_sea_water_temperature']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea surface salinity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_surface_salinity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water density. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_density. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: kg m-3. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: dense. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sigmat. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water density minus 1000. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_sigma_t. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water neutral density. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_neutral_density. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sigmatheta. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water potential density minus 1000. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_sigma_theta. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['pdens', 'sigma0']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water potential density. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_potential_density. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: pdens. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water potential density with ref at 1000 dbar. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water potential density with ref at 2000 dbar. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water potential density with ref at 3000 dbar. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water potential density with ref at 4000 dbar. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea surface density. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_surface_density. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water electrial conductivity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_electrical_conductivity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: S m-1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Speed of sound in water. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: speed_of_sound_in_sea_water. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: m s-1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Mixed layer depth. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: mixed_layer_depth. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: m. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: t. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Potential energy deficit. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: potential_energy_deficit. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: J m-2. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Ocean heat content. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ocean_heat_content. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: J. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Ocean salt content. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ocean_salt_content. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: kg. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Specific heat capacity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: specific_heat_capacity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: J K-1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['ssh', 'xe']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea surface height. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['sea_surface_height_above_sea_level', 'sea_surface_height_above_geoid']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: balance. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['uz', 'u3d']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water velocity along X. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_x_velocity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: delta. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: u. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['t', 'u', 'v']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['vz', 'v3d']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water velocity along Y. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_y_velocity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: v. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['wz', 'w3d']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water velocity along Z at W location. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['sea_water_z_velocity_at_w_location', 'sea_water_z_velocity']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: w. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: lon_u. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list(lon)). Switching to default value: ['lon'].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: lat_u. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list(lat)). Switching to default value: ['lat'].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: lon_v. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list(lon)). Switching to default value: ['lon'].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: lat_v. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list(lat)). Switching to default value: ['lat'].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['ubt', 'u2d', 'u']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water barotropic velocity along X. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: barotropic_sea_water_x_velocity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['vbt', 'v2d', 'v']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water barotropic velocity along Y. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: barotropic_sea_water_y_velocity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['ubc', 'u']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water baroclinic velocity along X. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: baroclinic_sea_water_x_velocity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['vbc', 'v']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water baroclinic velocity along Y. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: baroclinic_sea_water_y_velocity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Sea surface velocity along X', 'Eastward surface current', 'Eastward current']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['sea_surface_x_velocity', 'eastward_sea_water_velocity']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Sea surface velocity along Y', 'Northward surface current', 'Northward current']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['sea_surface_y_velocity', 'northward_sea_water_velocity']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water barotropic geostrophic velocity along X. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['barotropic_sea_water_x_geostrophic_velocity', 'eastward_geostrophic_current_velocity']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water barotropic geostrophic velocity along Y. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['barotropic_sea_water_y_geostrophic_velocity', 'northward_geostrophic_current_velocity']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea water speed. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_water_speed. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: amp. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: cspd. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Direction of sea water velocity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: direction_of_sea_water_velocity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: degrees. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: phase. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Kinetic energy. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: m2 s-2. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Eddy kinetic energy. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Turbulent kinetic energy. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Mean kinetic energy. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['kz', 'kzm']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Vertical diffusivity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: average_ocean_vertical_tracer_diffusivity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: m2 s-1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['bathy', 'h0', 'dpt']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Bathymetry. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['model_sea_floor_depth_below_sea_level', 'model_sea_floor_depth_below_geoid', 'sea_floor_depth_below_geoid']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: deep_r. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: t. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: hx. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: bathymetry at u-location. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: hy. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: bathymetry at v-location. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['meanlev', 'niv_moy']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Mean Sea Level. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['mean_sea_level_above_sea_floor_depth_at_lowest_astronomical_tide', 'mean_sea_level']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['depth', 'dep', 'deptht', 'depthu', 'depthv']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Depth. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ocean_layer_depth. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: deep. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['t', 'u', 'v', 'w']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['altitude', 'altitudet', 'altitudeu', 'altitudev']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Altitude. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: atmosphere_layer_altitude. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Mesh size along x. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: cell_x_size. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['t', 'u', 'v', 'f']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Mesh size along y. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: cell_y_size. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Ocean layer thickness. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ocean_layer_thickness. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['cell_x_size', 'cell_x_step']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Mesh step along y. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['cell_y_step', 'cell_y_size']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Volume of the cell. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: cell_volume. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: m3. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Volume of the sea water. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: seawater_volume. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['corio', 'f0']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Coriolis parameter. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: coriolis_parameter. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: s-1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Meridional derivative of coriolis parameter. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: meridional_derivative_of_coriolis_parameter. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: m-1 s-1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['oro', 'zs']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Orography for SLEVE vertical coordinates. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: orography. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Smoothed orography for SLEVE vertical coordinates. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: smoothed_orography. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: nethf. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Net radiation. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['surface_net_averaged_downward_radiative_flux', 'surface_net_downward_radiative_flux']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: W m-2. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Net longwave radiation (positive when directed downward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: surface_net_downward_longwave_flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: solar. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Net shortwave radiation (positive when directed downward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: surface_net_downward_shortwave_flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ghf. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Ground heat flux (SW + LW - LE - H). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: averaged_downward_ground_heat_flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Longwave radiation (positive when directed upward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: surface_upward_longwave_flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Shortwave radiation (positive when directed upward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: surface_upward_shortwave_flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Longwave radiation (positive when directed downward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: surface_downward_longwave_flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Shortwave radiation (positive when directed downward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: surface_downward_shortwave_flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Latent heat flux (positive when directed downward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: surface_downward_latent_heat_flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: W.m-2. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Latent heat flux (positive when directed upward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['surface_averaged_upward_latent_heat_flux', 'upward_latent_heat_flux', 'surface_upward_latent_heat_flux']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sensible heat flux (positive when directed downward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: surface_downward_sensible_heat_flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sensible heat flux (positive when directed upward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['surface_averaged_upward_sensible_heat_flux', 'upward_sensible_heat_flux', 'surface_upward_sensible_heat_flux']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: evaporation (positive when directed downward). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: lwe_thickness_of_water_evaporation_amount. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: tempo. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Precipitation [Downward (positive when it is raining)]. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['lwe_thickness_of_precipitation_amount', 'lwe_thickness_of_downward_precipitation_amount']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['m', 'mm']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: t2m. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: 2 m temperature. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: air_potential_temperature_at_2_meters. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['K', 'degrees_kelvin']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: q2m. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: 2 m specific humidity. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: air_specific_humidity_at_2_meters. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: kg kg-1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: air_relative_specific_humidity_at_2_meters. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['z0a', 'z0']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Air roughness length. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['air_surface_roughness_length', 'surface_roughness_length', 'roughness_length']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['cda', 'cd']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Averaged drag momentum coefficient', 'Drag momentum coefficient']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['averaged_drag_momentum_coefficient_in_air', 'drag_momentum_coefficient_in_air']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: W s-2. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['cha', 'ch']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Averaged drag thermal coefficient', 'Drag thermal coefficient']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['averaged_drag_thermal_coefficient_in_air', 'drag_thermal_coefficient_in_air']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['cea', 'ce']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Averaged latent heat flux coefficient', 'Latent heat flux coefficient']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['averaged_latent_heat_coefficient_in_air', 'latent_heat_coefficient_in_air']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Wind speed. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: wind_speed. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: speed. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Wind direction. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['wind_to_direction', 'wind_from_direction']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Wind from direction. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: wind_from_direction. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Wind to direction. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: wind_to_direction. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['uair', 'ua', 'uwnd']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Zonal wind speed (westerly). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['eastward_wind', 'x_wind']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['vair', 'va', 'vwnd']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Meridional wind speed (northerly). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['northward_wind', 'y_wind']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['wair', 'wa', 'wwnd']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Upward wind speed. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['upward_wind', 'z_wind']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['tair', 'temp', 'tht']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['air_potential_temperature', 'air_temperature']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['degrees_kelvin', 'K']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: pa. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Absolute pressure. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: air_pressure_at_sea_level. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Pa. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: tkea. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Turbulent Kinetic Energy. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: air_turbulent_kinetic_energy. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: 10-m zonal wind speed (westerly). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['x_wind_at_10m', 'x_wind', 'x_wind_at_u_location', 'x_wind_at_10m_at_u_location', 'eastward_wind']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: 10-m meridional wind speed (northerly). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['y_wind_at_10m', 'y_wind', 'y_wind_at_v_location', 'y_wind_at_10m_at_v_location', 'northward_wind']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['z_wind_at_10m', 'upward_wind_at_10m']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: 10-m wind speed along X. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['x_wind_at_10m', 'x_wind', 'grid_eastward_wind', 'x_wind_at_u_location', 'x_wind_at_10m_at_u_location']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: 10-m wind speed along Y. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['y_wind_at_10m', 'y_wind', 'grid_northward_wind', 'y_wind_at_v_location', 'y_wind_at_10m_at_v_location']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Surface eastward wind stress. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['surface_downward_eastward_stress', 'surface_eastward_stress', 'surface_downward_x_stress']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['N m-2', 'Pa']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Surface northward wind stress. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['surface_downward_northward_stress', 'surface_northward_stress', 'surface_downward_y_stress']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ustress. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Surface wind stress along X. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['surface_downward_x_stress', 'surface_x_stress', 'surface_downward_x_stress_at_u_location']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: N m-2. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: vstress. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Surface wind stress along Y. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['surface_downward_y_stress', 'surface_y_stress', 'surface_downward_y_stress_at_v_location']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: height of the top level. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: maximum_height. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['hs', 'hm0']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Significant wave height', 'Significant height of wind and swell waves']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['sea_surface_wave_significant_height', 'significant_height_of_wind_and_swell_waves']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: mssx. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Eastward mean square slope. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['eastward_mean_square_slope', 'x_mean_square_slope']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: m m-1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: mssy. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Northward mean square slope. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['nortward_mean_square_slope', 'y_mean_square_slope']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: mss. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: mean square slope. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: mean_square_slope. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: mlw. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Mean wave length. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: mean_wave_length. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: t0m1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Mean wave period. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_surface_wind_wave_mean_period_from_variance_spectral_density_inverse_frequency_moment. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: s. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: dp. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Peak direction. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_surface_wave_peak_direction. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: tp. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Peak period. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_surface_wave_peak_period. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: fp. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Peak frequency', 'Frequency of wind and swell waves at spectral peak']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: peak_frequency_of_wind_and_swell_waves. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['th1p', 'dir']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Mean wave direction', 'Mean direction of wind and swell waves at spectral peak']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_surface_wave_from_direction. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: degree. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['char', 'cha']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Charnock coefficient for surface roughness length for momentum in air. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: charnock_coefficient_for_surface_roughness_length_for_momentum_in_air. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ubr. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Near bottom rms velocities. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: rms_amplitude_of_orbital_bottom_velocity_of_wind_and_swell_waves. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: uubr. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Rms of near bottom zonal velocities. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: rms_of_bottom_zonal_velocity_amplitude. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: vubr. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Rms of near bottom meridional velocities. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: rms_of_bottom_meridional_velocity_amplitude. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: bhd. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Radiation pressure (Bernoulli head). Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: bernoulli_head_pressure_of_wind_and_swell_waves. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: N s-1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['foc', 'phioc']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Wave mixing kinetic turbulent energy due to surface breaking wave. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: turbulent_kinetic_energy_flux_into_sea_water_due_to_surface_dissipation_wave. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['W m-2', 'm3 s-3']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['utwo', 'tauox']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Zonal component of the surface wave-ocean momentum flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['x_component_of_surface_wave_ocean_momentum_flux', 'northward_wave_to_ocean_stress']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['vtwo', 'tauoy']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Meridional component of the surface wave-ocean momentum flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['y_component_of_surface_wave_ocean_momentum_flux', 'northward_wave_to_ocean_stress']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: utaw. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Eastward wave supported wind stress', 'Zonal component of the atmosphere-wave momentum flux']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: x_component_of_wave_supported_wind_stress. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: vtaw. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Northward wave supported wind stress', 'Meridional component of the atmosphere-wave momentum flux']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: y_component_of_wave_supported_wind_stress. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: fbb. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Wave dissipation in bottom boundary layer. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: wave_energy_dissipation_in_bottom_boundary_layer. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: utbb. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Zonal component of the bottom wave-ocean momentum flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['x_component_of_bottom_wave_ocean_momentum_flux', 'eastward_wave_to_bottom_boundary_layer_stress']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: vtbb. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Meridional component of the bottom wave-ocean momentum flux. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['y_component_of_bottom_wave_ocean_momentum_flux', 'northward_wave_to_bottom_boundary_layer_stress']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: uuss. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Eastward surface stokes drift. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: eastward_surface_stokes_drift. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: vuss. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Northward surface stokes drift. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: northward_surface_stokes_drift. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: utus. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Eastward stokes transport. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: eastward_stokes_transport. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: vtus. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: northward_stokes_transport. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: mapsta. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Status map. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: status_map. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: 1. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: wlv. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Sea surface height above sea level. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: sea_surface_height_above_sea_level. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: F. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Time. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: time. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: T. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['lon', 'longitude', 'nav_lon']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Longitude. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: longitude. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['degrees_east', 'degree_east', 'degree_e', 'degrees_e', 'degreee', 'degreese']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ni. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: nj. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: X. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: isau. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=isa). Switching to default value: isa.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['lat', 'latitude', 'nav_lat']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Latitude. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: latitude. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['degrees_north', 'degree_north', 'degree_n', 'degrees_n', 'degreen', 'degreesn']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Y. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:depth. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: Z. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:depth_t. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:depth_u. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:depth_v. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:depth_w. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:altitude. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:altitude_t. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:altitude_u. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:altitude_v. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: variables:altitude_w. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: string(default=None). Switching to default value: None.
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: level. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Model level number', 'Sigma level', 'Sigma level at W location']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['model_level_number', 'ocean_sigma_coordinate', 'ocean_s_coordinate', 'ocean_sigma_coordinate_at_w_location', 'ocean_s_coordinate_at_w_location', 'atmosphere_sigma_coordinate', 'atmosphere_s_coordinate']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: level_w. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['Sigma level', 'Sigma level at W location']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ['ocean_sigma_coordinate_at_w_location', 'ocean_s_coordinate_at_w_location']. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: ni. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: x-dimension of the grid. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: x_grid_index. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: nj. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings((default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: y-dimension of the grid. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/config.py:508: UserWarning: Bad configuration value: y_grid_index. Error: "'module' object has no attribute 'getfullargspec'". It must conform the follwing specs: strings(default=list()). Switching to default value: [].
warn(warnmsg.format(**locals()))
Traceback (most recent call last):
File "../../../scripts/tutorials/misc.bases.debug.py", line 30, in <module>
main()
File "../../../scripts/tutorials/misc.bases.debug.py", line 27, in main
obj.do_something()
File "../../../scripts/tutorials/misc.bases.debug.py", line 16, in do_something
t = create_time(['1900-01-01 00:00:00', '9999-12-31 23:59:59'])
File "/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/axes.py", line 494, in create_time
if istime(values):
File "/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/axes.py", line 180, in istime
specs = get_cf_axis_specs('time')
File "/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/cf.py", line 1041, in get_cf_axis_specs
return get_cf_specs(name=name, category='axes', cf_source=cf_source)
File "/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/cf.py", line 991, in get_cf_specs
parent=cf.CF_SPECS)
File "/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/cf.py", line 122, in __init__
self._post_process_()
File "/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/cf.py", line 201, in _post_process_
self._check_entry_(name)
File "/home/shom/sraynaud/Dev/forge/vacumm/lib/vacumm/misc/cf.py", line 232, in _check_entry_
specs['name'].remove(name)
AttributeError: 'str' object has no attribute 'remove'