MONC
Data Types List
Here are the data types with brief descriptions:
[detail level 12]
 Nallreduction_inter_io_modAll reduction, which does a reduce and then broadcasts the data to all IO servers
 Narithmetic_operator_modThe arithmetic operator which allows the user to define arithmetic formulas based on fields and constants which are then executed BDMAS style. This works by parsing the text forumula into an execution tree which is walked in order to perform the final result. Building the tree is the potentially expensive aspect of this, so built trees are cached as it is likely that the equation will be run many times. Currently this is expressed in terms of scalars, and it will operate on all elements of the data
 Nbroadcast_inter_io_modBroadcast inter IO communication which sends a value from one IO server to all others. This tracks field name and timestep and only issues one call (and one results call to completion) for that combination
 Ncasim_monc_dgs_space
 Ncollections_modCollection data structures
 Ncommunication_types_modContains the types used for communication, holding the state of communications and supporting activities. These are held in a separate module to allow for dependencies from multiple areas of the code base which might otherwise result in circular dependencies if they lived in a specific module of functionality
 Nconfiguration_parser_modParses the XML configuration file to produce the io configuration description which contains the data layout specification and rules for handling received data
 Nconversions_modConversion between common inbuilt FORTRAN data types
 Ndef_mcc_profiles
 Ndef_merge_atm
 Ndef_socrates_derived_fields
 Ndef_socrates_options
 Ndef_tvd_diagnostic_terms
 Ndiagnostic_federator_modThis diagnostics federator will take in data fields sent from a MONC, perform operators on these as required by the diagnostics definition to produce diagnostic instantaneous fields which are then sent along to anything interested in them
 Ndummy_netcdf_mod
 Nforthread_ciface_mod
 Nforthread_data
 Nforthread_types
 Ngrids_modFunctionality to support the different types of grid and abstraction between global grids and local ones after decomposition
 Nhalo_communication_modProvides the mechanism for halo swapping. This module contains the functionality required to determine what messages get sent where, pack data up en mass, send and receive from neighbouring processes and unpack into the appropriate data locations. There is also some functionality to help local copying of data to corresponding locations. The idea is that the caller will determine the policy (i.e. exactly what fields are to be communicated) through procedure arguments and this mechanism can be used again and again. It implements bulk sending of all field data in one large message to reduce communication overhead
 Ninter_io_specifics_modInter IO server communication specific functionality. This manages all of the communication that might happen between different IO servers
 Nio_server_client_modThis defines some constants and procedures that are useful to the IO server and clients that call it. By using the contents then the client can guarantee consistency against what the server expects
 Nio_server_state_reader_modReads the IO server state that was stored in a NetCDF checkpoint file
 Nio_server_state_writer_modThe IO server state module which will write out the current state of the IO server to a NetCDF file
 Niobridge_modBridge between MONC and the IO server, this registers the current MONC process, will issue data dumps and deregister MONCs when the model run is completed
 Niterativesolver_modThis is the iterative pressure solver and uses a Jacobi preconditioned BiCGStab which we implement here
 Nmonc_component_modInterfaces and types that MONC components must specify
 Nmonc_modMain core entry point to the rest of the model, this is called by the program main
 Nmpi_communication_modAbstraction layer around MPI, this issues and marshals the lower level communication details
 Noperator_modOperator federator which manages the different operators which are available. Operators take in any number of scalar reals and output a single scalar real
 Noptionsdatabase_modManages the options database. Contains administration functions and deduce runtime options from the command line
 Npencil_fft_modThis Pencil FFT performs 3D forward and backwards FFTs using pencil decomposition. It uses FFTW for the actual FFT kernel and this module contains all the data decomposition around this. There is no FFT required in Z, so this performs FFTs in Y and X (in that order forward and reversed backwards.) The data decomposition is the complex aspect, there is the concept of forward and backwards transformations. Forward transformations will go from pencil Z to Y to X and the backwards transformations undo these, so go from X to Y to Z. Note that we use quite a lot of buffer space here, this could be cut down if Y=X dimensions so some optimisation on memory could be done there in that case
 Nprognostics_modContains prognostic field definitions and functions
 Nq_indices_modThis manages the Q variables and specifically the mapping between names and the index that they are stored at
 Nreduction_inter_io_modReduction inter IO action which will perform reductions between IO servers. This is not as trivial as calling the MPI function as it is nondeterministic when messages will arrive and hence when one reduction on a process and a reduction on another should be called
 Nregistry_modMONC component registry
 Nsax_xml_parser_modA SAX parser for XML files. This is used to parse the description of the data and rules. Being a SAX parser it works in a callback fashion, as these often do, and will call the start and end subroutines along with tag details. It still requires some additional stability work to handle ill formatted XML and error checking
 Nstate_modThe model state which represents the current state of a run
 Nstencil_modPerforms the interpolation between the primal and dual grids via a stencil approach. For performance reasons, for each field we store the entirety of the y dimension and the number of x slices required by the stencil. Therefore a new interpolation is simply the calculation of one point and reuse of existing computed points (unless this is the first x or y.) The applicable interpolation stenciled data is copied out, with :,1,1 being the central point, minus and plus in each y and x dimension as determined by the stencil size. This is done so that the stencil size can easily be different for each flow field and this is the case with u (where we need u-2 in the X.)
 Nthreadpool_modThis is a thread pool and the single management "main" thread will spawn out free threads in the pool to perform specific work. If there are no free threads then it will block until one becomes available. It uses ForThreads, which is a wrapper around pthreads. The thread pool works by creating a number of threads and then passing the work to these threads, rather than creating a new thread for each piece of work
 Ntimeaveraged_time_manipulation_modPerforms time averaged, time manipulation and only returns a value if the output frequency determines one should be
 Nwriter_field_manager_modThe writer field manager will manage aspects of the fields being provided to the writer federator. There are two major aspects to this, firstly extraction of fields from the data sent directly from MONC and then passed on if these fields are needed. Secondly, this will queue up the data to ensure that it is sent to the writer federator in strict order and that only one piece of a fields data is in the writer federator at any one time
 Nwriter_types_modWriter types which are shared across writing functionality. Also includes serialisation functionality for these types