monica-adapter

1.0.0 • Public • Published

nodejs-monica-adapter

Node.js adapter to use the "model for Nitrogen and Carbon in agricultural systems" from ZALF Muencheberg, Germany

Requirements

You need to install monica and two by monica required packages: https://github.com/zalf-lsa/monica https://github.com/zalf-lsa/util https://github.com/zalf-lsa/sys-libs

Additionally install monica-parameters to use predefined crop, cultivar, residue etc. parameters. https://github.com/zalf-lsa/monica-parameters

Installation

Simply install this module with npm

npm install nodejs-monica-adapter

To install it globally run

npm install -g nodejs-monica-adapter

Usage

You have to compose your own "env" json object with all the information needed for a monica calculation. The Node.js adapter uses monica-zmq-server. Monica server processes are forked in the background and calculation data is sent to these processes. Communication is handled by "zero message queue".

'use strict';
var util= require('util');
 
var monicaAdapter= require('./index');
var env= require('./test-env.json');
 
return monicaAdapter.run(env, function(err, result) {
    if (err) {
        console.error('FAIL: got:', result);
        return monicaAdapter.killAllServers(function() {
            return process.exit(1);
        });
    }
    console.log('PASS: got:', result);
    return monicaAdapter.killAllServers(function() {
        return process.exit(0);
    });
});

Readme

Keywords

none

Package Sidebar

Install

npm i monica-adapter

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • runlevel3