CARSv2 / cars-v2

CARSv2 project repository - public
MIT License
4 stars 2 forks source link

Generate code machinery to explore the influence of parameter & observational choices on `DIVAnd` results #6

Closed Thomas-Moore-Creative closed 1 week ago

Thomas-Moore-Creative commented 1 year ago

Task is to generate code machinery to explore the influence of the following on the results of DIVAnd analyses:

Here is an example of the types of plots wanted from this code: CARSv2-plot-example

Thomas-Moore-Creative commented 1 year ago

Todo:

working on

Thomas-Moore-Creative commented 1 year ago

Hey @ChrisC28 - just FYI In your https://github.com/CARSv2/cars-v2/blob/main/notebooks/Create_BG_Temperature_Field_Synthetic.ipynb which I'm using I'm my code above the following was commented out as markdown but I assumed it's needed (which it appears to be)

bathname = "../src/data/TMoore-test-input/gebco_30sec_16.nc"
bathisglobal = true

dx = 0.5 # longitude resolution in degrees
dy = 0.5 # latitude resolution in degrees

lonr = 90.:dx:180.; # the range of longitudes (start:step:end)
latr = -50.:dy:0.; # the range of latitudes (start:step:end)

bx,by,b = extract_bath(bathname,true,lonr,latr)
Thomas-Moore-Creative commented 1 year ago

note the following from DIVAnd workshops

Looking at effets of changing analysis parameters https://github.com/gher-uliege/Diva-Workshops/blob/master/notebooks/3-Analysis/11-L-and-epsilon-effect.ipynb

Note how residuals change (decrease if you decrease epsilon ⚠️⚠️ low residuals are not necessarily a good sign as the analysis used the data points to which you compare your analysis.

⚠️ Important take-home message! Remember Analyses are not very sensitive to changes in L or ϵ if (in 2D) L * ϵ remains constant and data coverage is reasonable.

Thomas-Moore-Creative commented 1 year ago

Getting basic loop & plot machinery going - https://github.com/CARSv2/cars-v2/commit/4dd70cc5ddd4c033021aeb56a1b8b6866a3afc35 CleanShot 2023-04-14 at 11 17 42

Thomas-Moore-Creative commented 1 week ago

this fed into #11 ( now closed ). @ChrisC28 has moved Julia \ DIVA development further towards completion.