-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use BUMP for basic hz correlation #36
Comments
... things that I know will need to be added to the code
|
@travissluka When I run test for staticbinit.x, it gives the following error. I am not so sure about this staticbinit.x and the background error covariance. Below are my questions.
I've updated the code to feature/staticbinit.x branch. |
try this in your background error:
covariance model: BUMP
bump:
verbosity: main
datadir: Data
forced_radii: 1
method: cor
new_nicas: 1
ntry: 3
prefix: Chen
resol: 6.0
mpicom: 2
rh:
sea_surface_temperature: [3000.0e3]
rv:
sea_surface_temperature: [1]
strategy: specific_univariate a couple of notes there:
You'll have to implement those stubs you added in In order to quickly get the code to run without crashing, I added: atlas::FieldSet * Geometry::atlasFieldSet() const {
atlas::FieldSet * fs = new atlas::FieldSet();
fs->add(atlasFunctionSpace_->lonlat());
return fs;
} and void Field:s:setAtlas(atlas::FieldSet *f) const {
f->add((*atlasFieldSet_)[0]);
} clearly not the correct way to it (dangling pointer!). |
also, correct, I don't think the background file is read in and used for anything here |
implement the
staticbinit.x
application. This will use BUMP to calculate the files needed for a basic horizontal correlation. operatorumdsstCovar
as the listed covariance in the yaml file, useBUMP
covariance model: BUMP
)at this point, the above dirac ctest should produce output fields with increments that are spread out horizontally
The text was updated successfully, but these errors were encountered: