Skip to content
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

Smaller fixes #41

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Prototype_V3.4.xlsm
Binary file not shown.
1 change: 1 addition & 0 deletions SVSModel/Data/CropCoefficientTableFull.csv
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Annual ryegrass Fodder General,8,Fodder,Grass,Annual ryegrass,General,Poaceae ,L
Rape Fodder General,3,Fodder,Leafy brassica,Rape,General,Brassicaceae,Brassica,napus,napus,Brassica napus napus,napus napus,Seed,Oct,EarlyReproductive,Jan,6,t/ha,Standing DM,1,Dry,0,0,0.778,-0.122,0,0.1,1.2,1,2,0.8,1,2.5
Kale Fodder General,4,Fodder,Leafy brassica,Kale,General,Brassicaceae,Brassica,oleracea,acephala,Brassica oleracea acephala,oleracea acephala,Seed,Oct,LateReproductive,Jul,16,t/ha,Standing DM,1,Dry,0,0,0.58,-0.22,0,0.1,1.2,1,2,0.8,1,2.5
Turnip Fodder Leafy,6,Fodder,Leafy brassica,Turnip,Leafy,Brassicaceae,Brassica,rapa x napus,,Brassica rapa x napus ,rapa x napus ,Seed,Oct,Vegetative,Mar,6,t/ha,Standing DM,1,Dry,0,0,0.49,-0.21,0,0.1,1.2,1,2,0.8,1.5,3.5
Pasture Regrowth,,Fodder,Grass,Pasture,General,,,,,,,Seedling,Apr,EarlyReproductive,Dec,3,t/ha,Standing DM,1,Dry,0,0,0.7,0,0,0.1,0.9,1,1.5,0.9,1.9,2.5
Oat Grain General,13,Grain,Cereal,Oat,General,Poaceae ,Avena,sativa,,Avena sativa ,sativa ,Seed,May,Maturity,Feb,8,t/ha,Saleable grain ,1,Total,0,0,0.4,0.1,13,0.1,1.5,1,1,0.9,0.5,1.3
Sunflower Grain General,17,Grain,Cereal,Sunflower,General,Asteraceae ,Helianthus,annus,,Helianthus annus ,annus ,Seed,Oct,Maturity,Mar,3,t/ha,Saleable grain ,1,Total,0,0,0.3,0.1,8,0.1,1.5,1,1,0.9,1.3,2.4
Barley Grain General,18,Grain,Cereal,Barley,General,Poaceae ,Hordeum,vulgure,,Hordeum vulgure ,vulgure ,Seed,Sep,Maturity,Feb,10,t/ha,Saleable grain ,1,Total,0,0,0.463,0.1,13,0.1,1.2,1,1,0.9,0.5,1.2
Expand Down
4 changes: 2 additions & 2 deletions SVSModel/ModelInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public interface IModelInterface
/// <param name="nApplied">A dictionary of nitrogen applications</param>
/// <param name="config">Model config object, all parameters are required</param>
/// <returns>A list of <see cref="DailyNBalance"/> objects</returns>
List<DailyNBalance> GetDailyNBalance(string weatherStation, Dictionary<DateTime, double> testResults, Dictionary<DateTime, double> nApplied, Config config, double initialN);
List<DailyNBalance> GetDailyNBalance(string weatherStation, Dictionary<DateTime, double> testResults, Dictionary<DateTime, double> nApplied, Config config);

/// <summary>
/// Gets the crop data from the data file
Expand All @@ -39,7 +39,7 @@ public interface IModelInterface

public class ModelInterface : IModelInterface
{
public List<DailyNBalance> GetDailyNBalance(string weatherStation, Dictionary<DateTime, double> testResults, Dictionary<DateTime, double> nApplied, Config config, double initialN = Constants.InitialN)
public List<DailyNBalance> GetDailyNBalance(string weatherStation, Dictionary<DateTime, double> testResults, Dictionary<DateTime, double> nApplied, Config config)
{
var startDate = config.Prior.EstablishDate.AddDays(-1);
var endDate = config.Following.HarvestDate.AddDays(2);
Expand Down
352 changes: 176 additions & 176 deletions TestComponents/TestSets/Location/Outputs/ashburton_Aut.csv

Large diffs are not rendered by default.

368 changes: 184 additions & 184 deletions TestComponents/TestSets/Location/Outputs/ashburton_Spr.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Location/Outputs/blenheim_Aut.csv

Large diffs are not rendered by default.

368 changes: 184 additions & 184 deletions TestComponents/TestSets/Location/Outputs/blenheim_Spr.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Location/Outputs/hastings_Aut.csv

Large diffs are not rendered by default.

368 changes: 184 additions & 184 deletions TestComponents/TestSets/Location/Outputs/hastings_Spr.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Location/Outputs/invercargill_Aut.csv

Large diffs are not rendered by default.

368 changes: 184 additions & 184 deletions TestComponents/TestSets/Location/Outputs/invercargill_Spr.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Location/Outputs/kerikeri_Aut.csv

Large diffs are not rendered by default.

368 changes: 184 additions & 184 deletions TestComponents/TestSets/Location/Outputs/kerikeri_Spr.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Location/Outputs/levin_Aut.csv

Large diffs are not rendered by default.

368 changes: 184 additions & 184 deletions TestComponents/TestSets/Location/Outputs/levin_Spr.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lauder_Base.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lauder_LowYield.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lauder_Rocks.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lauder_VeryDry.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lauder_VeryWet.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Levin_Base.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Levin_LowYield.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Levin_Rocks.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Levin_VeryDry.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Levin_VeryWet.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lincoln_Base.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lincoln_LowYield.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lincoln_Rocks.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lincoln_VeryDry.csv

Large diffs are not rendered by default.

1,084 changes: 542 additions & 542 deletions TestComponents/TestSets/Losses/Outputs/Lincoln_VeryWet.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/Dry_Full.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/Dry_None.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/Dry_Some.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/Typical_Full.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/Typical_None.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/Typical_Some.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/VeryDry_Full.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/VeryDry_None.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/VeryDry_Some.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/VeryWet_Full.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/VeryWet_None.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/VeryWet_Some.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/Wet_Full.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/Wet_None.csv

Large diffs are not rendered by default.

706 changes: 353 additions & 353 deletions TestComponents/TestSets/Moisture/Outputs/Wet_Some.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN0.5High.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN0.5Low.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN1.0High.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN1.0Low.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN1.5High.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN1.5Low.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN3.0High.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN3.0Low.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN4.5High.csv

Large diffs are not rendered by default.

352 changes: 176 additions & 176 deletions TestComponents/TestSets/Residues/Outputs/StovN4.5Low.csv

Large diffs are not rendered by default.

48 changes: 32 additions & 16 deletions TestComponents/TestSets/WS1/FieldConfigs.csv

Large diffs are not rendered by default.

Binary file modified TestComponents/TestSets/WS1/FieldConfigs.pkl
Binary file not shown.
Binary file modified TestComponents/TestSets/WS1/FieldConfigs.xlsx
Binary file not shown.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

972 changes: 486 additions & 486 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N1_irr1_Onion.csv

Large diffs are not rendered by default.

656 changes: 223 additions & 433 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N1_irr1_Ryegrass.csv

Large diffs are not rendered by default.

972 changes: 486 additions & 486 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N1_irr2_Onion.csv

Large diffs are not rendered by default.

656 changes: 223 additions & 433 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N1_irr2_Ryegrass.csv

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

972 changes: 486 additions & 486 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N2_irr1_Onion.csv

Large diffs are not rendered by default.

656 changes: 223 additions & 433 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N2_irr1_Ryegrass.csv

Large diffs are not rendered by default.

972 changes: 486 additions & 486 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N2_irr2_Onion.csv

Large diffs are not rendered by default.

656 changes: 223 additions & 433 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N2_irr2_Ryegrass.csv

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

972 changes: 486 additions & 486 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N3_irr1_Onion.csv

Large diffs are not rendered by default.

656 changes: 223 additions & 433 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N3_irr1_Ryegrass.csv

Large diffs are not rendered by default.

972 changes: 486 additions & 486 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N3_irr2_Onion.csv

Large diffs are not rendered by default.

656 changes: 223 additions & 433 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N3_irr2_Ryegrass.csv

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

972 changes: 486 additions & 486 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N4_irr1_Onion.csv

Large diffs are not rendered by default.

656 changes: 223 additions & 433 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N4_irr1_Ryegrass.csv

Large diffs are not rendered by default.

972 changes: 486 additions & 486 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N4_irr2_Onion.csv

Large diffs are not rendered by default.

656 changes: 223 additions & 433 deletions TestComponents/TestSets/WS1/Outputs/HawkesBayRot3_N4_irr2_Ryegrass.csv

Large diffs are not rendered by default.

58 changes: 29 additions & 29 deletions TestComponents/TestSets/WS2/FieldConfigs.csv

Large diffs are not rendered by default.

Binary file modified TestComponents/TestSets/WS2/FieldConfigs.pkl
Binary file not shown.
Binary file modified TestComponents/TestSets/WS2/FieldConfigs.xlsx
Binary file not shown.
1,866 changes: 933 additions & 933 deletions TestComponents/TestSets/WS2/Outputs/1-3Oni-A.csv

Large diffs are not rendered by default.

960 changes: 480 additions & 480 deletions TestComponents/TestSets/WS2/Outputs/1-4Gra-A.csv

Large diffs are not rendered by default.

950 changes: 475 additions & 475 deletions TestComponents/TestSets/WS2/Outputs/1-5Gra-A.csv

Large diffs are not rendered by default.

1,042 changes: 521 additions & 521 deletions TestComponents/TestSets/WS2/Outputs/2-1Bar-A.csv

Large diffs are not rendered by default.

1,149 changes: 574 additions & 575 deletions TestComponents/TestSets/WS2/Outputs/2-2Oni-A.csv

Large diffs are not rendered by default.

866 changes: 433 additions & 433 deletions TestComponents/TestSets/WS2/Outputs/2-3Cauli-A.csv

Large diffs are not rendered by default.

1,285 changes: 639 additions & 646 deletions TestComponents/TestSets/WS2/Outputs/2-4Pot-B.csv

Large diffs are not rendered by default.

1,286 changes: 643 additions & 643 deletions TestComponents/TestSets/WS2/Outputs/3-1Must-A.csv

Large diffs are not rendered by default.

1,374 changes: 687 additions & 687 deletions TestComponents/TestSets/WS2/Outputs/3-2Car-A.csv

Large diffs are not rendered by default.

1,572 changes: 786 additions & 786 deletions TestComponents/TestSets/WS2/Outputs/3-3Oni-A.csv

Large diffs are not rendered by default.

372 changes: 186 additions & 186 deletions TestComponents/TestSets/WS2/Outputs/3-4Oni-B.csv

Large diffs are not rendered by default.

592 changes: 296 additions & 296 deletions TestComponents/TestSets/WS2/Outputs/4-1Pot-A.csv

Large diffs are not rendered by default.

905 changes: 428 additions & 477 deletions TestComponents/TestSets/WS2/Outputs/4-2Caul-A.csv

Large diffs are not rendered by default.

1,176 changes: 588 additions & 588 deletions TestComponents/TestSets/WS2/Outputs/4-3Maize-A.csv

Large diffs are not rendered by default.

848 changes: 424 additions & 424 deletions TestComponents/TestSets/WS2/Outputs/4-4Oni-A.csv

Large diffs are not rendered by default.

636 changes: 318 additions & 318 deletions TestComponents/TestSets/WS2/Outputs/4-5Lup-A.csv

Large diffs are not rendered by default.

960 changes: 480 additions & 480 deletions TestComponents/TestSets/WS2/Outputs/5-1Pot-A.csv

Large diffs are not rendered by default.

1,161 changes: 565 additions & 596 deletions TestComponents/TestSets/WS2/Outputs/5-2Oni-A.csv

Large diffs are not rendered by default.

1,112 changes: 556 additions & 556 deletions TestComponents/TestSets/WS2/Outputs/5-3Gra-A.csv

Large diffs are not rendered by default.

844 changes: 422 additions & 422 deletions TestComponents/TestSets/WS2/Outputs/5-4Pot-B.csv

Large diffs are not rendered by default.

738 changes: 369 additions & 369 deletions TestComponents/TestSets/WS2/Outputs/6-1Maize-A.csv

Large diffs are not rendered by default.

643 changes: 322 additions & 321 deletions TestComponents/TestSets/WS2/Outputs/6-2Gra-A.csv

Large diffs are not rendered by default.

578 changes: 289 additions & 289 deletions TestComponents/TestSets/WS2/Outputs/6-3Cab-A.csv

Large diffs are not rendered by default.

604 changes: 302 additions & 302 deletions TestComponents/TestSets/WS2/Outputs/6-4Gra-B.csv

Large diffs are not rendered by default.

414 changes: 207 additions & 207 deletions TestComponents/TestSets/WS2/Outputs/7-1BS-A.csv

Large diffs are not rendered by default.

692 changes: 346 additions & 346 deletions TestComponents/TestSets/WS2/Outputs/7-2Gra-A.csv

Large diffs are not rendered by default.

771 changes: 378 additions & 393 deletions TestComponents/TestSets/WS2/Outputs/7-3BS-B.csv

Large diffs are not rendered by default.

758 changes: 379 additions & 379 deletions TestComponents/TestSets/WS2/Outputs/7-4Gra-B.csv

Large diffs are not rendered by default.

901 changes: 450 additions & 451 deletions TestComponents/TestSets/WS2/Outputs/7-5BS-C.csv

Large diffs are not rendered by default.

542 changes: 271 additions & 271 deletions TestComponents/TestSets/WS2/Outputs/7-6Gra-C.csv

Large diffs are not rendered by default.

982 changes: 491 additions & 491 deletions TestComponents/TestSets/WS2/Outputs/8-0Potato.csv

Large diffs are not rendered by default.

1,359 changes: 679 additions & 680 deletions TestComponents/TestSets/WS2/Outputs/8-1Wheat.csv

Large diffs are not rendered by default.

1,111 changes: 555 additions & 556 deletions TestComponents/TestSets/WS2/Outputs/8-2Peas.csv

Large diffs are not rendered by default.

711 changes: 355 additions & 356 deletions TestComponents/TestSets/WS2/Outputs/8-3Oat.csv

Large diffs are not rendered by default.

918 changes: 459 additions & 459 deletions TestComponents/TestSets/WS2/Outputs/9-1Pumpkin.csv

Large diffs are not rendered by default.

1,289 changes: 586 additions & 703 deletions TestComponents/TestSets/WS2/Outputs/9-2TurfGrass.csv

Large diffs are not rendered by default.

1,189 changes: 458 additions & 731 deletions TestComponents/TestSets/WS2/Outputs/9-3Broccoli.csv

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion TestComponents/TestSets/WS2/SoilData.csv
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ Site,Date,SoilN0_15,SoilN15_30,SoilN30_60,SoilN60_90
2,12/10/2022,12,20,41,NA
2,16/11/2022,9,11,41,32
2,13/12/2022,3,12,27,23
2,11/01/2023,301,166,70,33
2,15/02/2023,37,38,39,63
2,15/03/2023,29,30,80,21
2,4/04/2023,15,12,30,66
Expand Down
12 changes: 6 additions & 6 deletions TestGraphs/MakeConfigs/WS1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 19,
"id": "5d0cd442-4d73-4aaa-90f0-63dd7945be5f",
"metadata": {
"tags": []
Expand All @@ -15,7 +15,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 20,
"id": "9f1dfee6-ad9f-4a0e-8324-31498e929c91",
"metadata": {
"tags": []
Expand All @@ -32,7 +32,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": 21,
"id": "83ad032a-d4db-4bb3-b289-c9c5679888dc",
"metadata": {
"tags": []
Expand All @@ -56,7 +56,7 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": 22,
"id": "cb5c353f",
"metadata": {},
"outputs": [],
Expand All @@ -78,7 +78,7 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 23,
"id": "f1eb965a-7faa-4228-8052-754213d42587",
"metadata": {
"tags": []
Expand All @@ -91,7 +91,7 @@
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": 24,
"id": "acea3a05-e847-42d0-afa6-82245a56da6a",
"metadata": {
"tags": []
Expand Down
12 changes: 6 additions & 6 deletions TestGraphs/MakeConfigs/WS2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 13,
"id": "5d0cd442-4d73-4aaa-90f0-63dd7945be5f",
"metadata": {
"tags": []
Expand All @@ -25,7 +25,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 14,
"id": "9f1dfee6-ad9f-4a0e-8324-31498e929c91",
"metadata": {
"tags": []
Expand All @@ -47,7 +47,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": 15,
"id": "83ad032a-d4db-4bb3-b289-c9c5679888dc",
"metadata": {
"tags": []
Expand All @@ -71,7 +71,7 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": 16,
"id": "cb5c353f",
"metadata": {},
"outputs": [],
Expand All @@ -86,7 +86,7 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 17,
"id": "f1eb965a-7faa-4228-8052-754213d42587",
"metadata": {
"tags": []
Expand All @@ -99,7 +99,7 @@
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": 18,
"id": "acea3a05-e847-42d0-afa6-82245a56da6a",
"metadata": {
"tags": []
Expand Down
26 changes: 18 additions & 8 deletions TestGraphs/MakeGraphs/Moisture.ipynb

Large diffs are not rendered by default.

441 changes: 440 additions & 1 deletion TestGraphs/MakeGraphs/Residues.ipynb

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions TestGraphs/MakeGraphs/Residues.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,6 @@
ax.xaxis.set_major_formatter(mdates.DateFormatter('%#d-%b'))
Graph.tight_layout(pad=1.5)
plt.savefig(os.path.join(outPath, 'Residues.png'))
# -

AllData
64 changes: 32 additions & 32 deletions TestGraphs/MakeGraphs/WS1.ipynb

Large diffs are not rendered by default.

56 changes: 28 additions & 28 deletions TestGraphs/MakeGraphs/WS2.ipynb

Large diffs are not rendered by default.

Loading