├── .gitattributes ├── .gitignore ├── .lfsconfig ├── GLOceanKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── jearly.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── jearly.xcuserdatad │ └── xcschemes │ ├── GLOceanKit 2.xcscheme │ ├── GLOceanKit.xcscheme │ └── xcschememanagement.plist ├── GLOceanKit ├── GLInternalModes.h ├── GLInternalModes.m ├── GLInternalModesSpectral.h ├── GLInternalModesSpectral.m ├── GLInternalWaveInitialization.h ├── GLInternalWaveInitialization.m ├── GLOceanKit.h ├── Info.plist ├── Quasigeostrophy2D.h └── Quasigeostrophy2D.m ├── GLOceanKitTests ├── GLOceanKitTests.m └── Info.plist ├── Matlab ├── .gitattributes ├── .gitignore ├── .vscode │ └── settings.json ├── AdvectionDiffusionEstimation │ ├── Fluids Paper Code │ │ ├── DivVortStrainEst.m │ │ ├── Fig10Code.m │ │ ├── Fig11Code.m │ │ ├── Fig4Code.m │ │ ├── Fig6Code.m │ │ ├── Fig7Code.m │ │ ├── Fig8Code.m │ │ ├── Fig8Codeb.m │ │ ├── FigAppendA1.m │ │ ├── FigAppendA2.m │ │ ├── FigAppendA3.m │ │ ├── FigAppendA3a.m │ │ ├── FigAppendA3b.m │ │ ├── Tab1Fig5Code.m │ │ ├── Tab2FixedCode.m │ │ ├── Tab2RollingCode.m │ │ ├── exportfig.m │ │ ├── figures │ │ │ ├── FVUFDU.eps │ │ │ ├── LatmixPositions.eps │ │ │ ├── PositionsVaryStrain.eps │ │ │ ├── StrainVar.eps │ │ │ ├── append0.eps │ │ │ ├── append1a.eps │ │ │ ├── append1b.eps │ │ │ ├── append2a.eps │ │ │ ├── append2b.eps │ │ │ ├── bootstrap.eps │ │ │ ├── bootstrap_2.eps │ │ │ ├── bootstrap_histStrainDom.eps │ │ │ └── latmixroll.eps │ │ ├── smoothedGriddedRho1Drifters.mat │ │ └── smoothedGriddedRho2Drifters.mat │ ├── LinearVelocityField │ │ ├── DecomposeTrajectories.m │ │ ├── EstimateLinearVelocityFieldParameters.m │ │ ├── EstimateLinearVelocityFieldParametersBSplines.m │ │ ├── EstimateSolutionLikelihoodFromBootstraps.m │ │ ├── FluidsPaperFigures │ │ │ ├── .gitignore │ │ │ ├── CompareBootstrapFits.m │ │ │ ├── GenerateBootstrapFits.m │ │ │ ├── LoadFigureDefaults.m │ │ │ ├── MakeFigureBestSplineFitSite1.m │ │ │ ├── MakeFigureBestSplineFitSite2.m │ │ │ ├── MakeFigureDecompositionCoherence.m │ │ │ ├── PlotSite1And2SpectraForManuscript.m │ │ │ └── SpectrumComparison.m │ │ ├── ModelParameter.m │ │ ├── README.md │ │ ├── SecondMomentMethod │ │ │ ├── FitSecondMomentToEllipseModel.m │ │ │ ├── FitSecondMomentToEllipseModelFullSearchOptions.m │ │ │ ├── FitSecondMomentToEllipseModelLeastSquares.m │ │ │ ├── FitSecondMomentToLinearizedEllipseModel.m │ │ │ ├── FitSecondMomentToTimeVaryingEllipseModel.m │ │ │ ├── FitTrajectoriesToEllipseModel.m │ │ │ ├── FitTrajectoriesToEllipseModelWithJacknife.m │ │ │ ├── FitTrajectoriesToLinearVelocityField.m │ │ │ ├── FitTrajectoriesToLinearizedEllipseModel.m │ │ │ ├── FitTrajectoriesToTimeVaryingEllipseModel.m │ │ │ ├── MomentTensorEvolutionInStrainVorticityField.m │ │ │ ├── MomentTensorEvolutionInTimeVaryingStrainVorticityField.m │ │ │ ├── MomentTensorModelError.m │ │ │ └── MomentTensorModelErrorForBSplines.m │ │ ├── UnitTests │ │ │ ├── DensityLevelForCDF.m │ │ │ ├── EstimateLinearVelocityFieldParametersComparison.m │ │ │ ├── EstimateLinearVelocityFieldParametersUnitTest.m │ │ │ ├── EstimateLinearVelocityFieldParametersUsingJacknife.m │ │ │ ├── EstimateTimeVaryingLinearVelocityFieldParameters.m │ │ │ ├── SimpleEstimationExample.m │ │ │ ├── UnitTestAnalyticalPathSolutions.m │ │ │ ├── UnitTestEstimateLinearVelocityFieldParameters.m │ │ │ ├── UnitTestLinearizedEllipseEstimates.m │ │ │ ├── kde.m │ │ │ └── kde2d.m │ │ └── Website │ │ │ ├── LoadFigureDefaults.m │ │ │ ├── MakeSite1DecompositionMovie.m │ │ │ ├── MakeSite1Movie.m │ │ │ ├── MakeSite2DecompositionMovie.m │ │ │ ├── MakeSite2Movie.m │ │ │ ├── Site1Animation.mp4 │ │ │ ├── Site1DecompositionAnimation.mp4 │ │ │ ├── Site2Animation.mp4 │ │ │ ├── Site2DecompositionAnimation.mp4 │ │ │ └── Site2DecompositionAnimationModel3Dof6.mp4 │ └── README.md ├── AdvectionDiffusionModels │ ├── AdvectionDiffusionIntegrator.m │ ├── Examples │ │ ├── AnisotropicBoundaryCondition.mat │ │ ├── MakeDivergenceConvergenceMovie.m │ │ ├── MakeIntroductoryLinearVelocityFieldMovies.m │ │ ├── MakeParticlesInABoxMovie.m │ │ ├── MakeParticlesInCylinderFlowMovie.m │ │ ├── ShowAdvectionDiffusionOfKinematicModels.m │ │ ├── ShowAnisotropicBoundaryCondition.m │ │ ├── ShowAnisotropicBoundaryCondition2D.m │ │ ├── ShowAnisotropicBoundaryCondition2D.png │ │ ├── ShowKinematicModels.m │ │ ├── ShowLagrangianSpectraOfJetMeander.m │ │ ├── ShowMultipleObstacles.m │ │ ├── ShowNarrowEscapeProblem.m │ │ ├── figures │ │ │ ├── AdvectionDiffusionCylinderModel.mp4 │ │ │ ├── DiffusionWithComplexGeometry.mp4 │ │ │ ├── DivergenceConvergenceInABox.mp4 │ │ │ ├── ParticlesInABox.mp4 │ │ │ ├── advection_diffusion_model_cylinder.png │ │ │ ├── jet_spectra_kappa0.png │ │ │ ├── jet_spectra_kappa1.png │ │ │ ├── jet_trajectories_kappa0.png │ │ │ ├── jet_trajectories_kappa1.png │ │ │ ├── kinematic_model_cylinder.png │ │ │ ├── kinematic_model_eddy.png │ │ │ ├── kinematic_model_jet.png │ │ │ ├── kinematic_model_strain.png │ │ │ ├── kinematic_model_vorticity.png │ │ │ └── trajectories_jet.png │ │ └── tightfig.m │ ├── KinematicModels │ │ ├── CylinderFlow.m │ │ ├── DivergenceBox.m │ │ ├── KinematicModel.m │ │ ├── LinearVelocityField.m │ │ ├── MeanderingJet.m │ │ ├── NarrowEscapeProblem.m │ │ ├── SimpleBox.m │ │ ├── StreamfunctionModel.m │ │ └── TranslatingGaussian.m │ ├── README.md │ └── Tests │ │ ├── InPolygonTest.m │ │ ├── ReflectOffBoundary.m │ │ ├── ReflectOffCylinder.m │ │ └── doesIntersect.m ├── Boussinesq2D │ ├── Boussinesq2D.m │ ├── Boussinesq2DConstantStratification.m │ ├── InternalWaveExperiment.m │ ├── InternalWaveExperimentExponentialStratification.m │ ├── Notes │ │ ├── Boussinesq2D notes.aux │ │ ├── Boussinesq2D notes.log │ │ ├── Boussinesq2D notes.pdf │ │ ├── Boussinesq2D notes.synctex.gz │ │ └── Boussinesq2D notes.tex │ ├── UnitTests │ │ └── InternalWaveConstantStratificationTest.m │ └── WaveWaveDecomposition.m ├── ClassAnnotations │ ├── @CAAnnotatedClass │ │ ├── CAAnnotatedClass.m │ │ ├── addPropertyAnnotation.m │ │ ├── annotatedClassFromFile.m │ │ ├── annotatedDimensionNames.m │ │ ├── annotatedPropertyNames.m │ │ ├── classDefinedPropertyAnnotations.m │ │ ├── dimensionAnnotationWithName.m │ │ ├── propertyAnnotationWithName.m │ │ ├── removePropertyAnnotation.m │ │ ├── requiredProperties.m │ │ └── writeToFile.m │ ├── CADimensionProperty.m │ ├── CAFunctionProperty.m │ ├── CAMethodAnnotation.m │ ├── CANumericProperty.m │ ├── CAObjectProperty.m │ ├── CAPropertyAnnotation.m │ ├── UnitTests │ │ ├── AnnotationTestClass.m │ │ ├── AnnotationTestClassB.m │ │ └── TestReadWrite.m │ └── classRequiredPropertyNames.m ├── Diffusivity │ ├── CenterOfMass.m │ ├── CreateBinEdgesForInitialSeparation.m │ ├── DiffusivityFromZeroFrequency.m │ ├── MeanSquareSeparation.m │ ├── PairwiseMeanSquareSeparation.m │ ├── PairwiseRelativeDiffusivity.m │ ├── PairwiseRelativeDiffusivityFromSlope.m │ ├── PairwiseRelativeDiffusivityFromSlopeScatter.m │ ├── PairwiseRelativeDiffusivityVsDistance.m │ ├── PairwiseRelativeDiffusivityWithZ.m │ ├── PairwiseRelativeDispersion.m │ ├── ParticlePathInStrainVorticityField.m │ ├── SecondMomentMatrix.m │ ├── SingleParticleDiffusivity.m │ └── UnitTests │ │ ├── TestDiffusivityInStrainField.m │ │ ├── TestDiffusivityWithRandomWalk.m │ │ ├── TestPairwiseDiffusivityWithRandomWalk.m │ │ ├── TestPairwiseRelativeDiffusivity.m │ │ ├── TestPairwiseRelativeDiffusivityVsDistance.m │ │ ├── TestRandomWalkDiffusivity.m │ │ └── histogramWithErrorbars.m ├── InternalModes │ ├── Extras │ │ ├── ClassHierarchy.graffle │ │ ├── ClassHierarchy.png │ │ ├── ExponentialSolutionSpeedTest.m │ │ ├── ExponentialStratificationAnalyticalSolution │ │ │ ├── exponential-stratification-analytical-solution.pdf │ │ │ └── exponential-stratification-analytical-solution.tex │ │ ├── FreeSurfaceModeTest.m │ │ ├── HigherOrderSplines │ │ │ ├── HigherOrderSpline.m │ │ │ ├── NaturalKnotsForSpline.m │ │ │ └── bspline.m │ │ ├── InitializationAlgorithm.graffle │ │ │ ├── data.plist │ │ │ ├── image10.pdf │ │ │ ├── image12.pdf │ │ │ ├── image14.pdf │ │ │ └── image15.pdf │ │ ├── Notes on initialization.rtf │ │ ├── SQGModeFromDensityProfile.m │ │ ├── SQGModeTest.m │ │ ├── StretchedCoordinateTest.m │ │ └── WKBModeTest.m │ ├── InternalModes.m │ ├── InternalModesAdaptiveSpectral.m │ ├── InternalModesBase.m │ ├── InternalModesConstantStratification.m │ ├── InternalModesDensitySpectral.m │ ├── InternalModesExponentialStratification.m │ ├── InternalModesFiniteDifference.m │ ├── InternalModesSpectral.m │ ├── InternalModesWKB.m │ ├── InternalModesWKBHydrostatic.m │ ├── InternalModesWKBSpectral.m │ ├── LowerBoundary.m │ ├── Normalization.m │ ├── README.md │ ├── UnitTests │ │ ├── BasicInitialization.m │ │ ├── CyprusSimulationParams.mat │ │ ├── DepthIntegrationRelativeErrorTests.m │ │ ├── GaussQuadraturePoints.m │ │ ├── InternalModeRelativeErrorTests.m │ │ ├── NormalizationRatioTests.m │ │ ├── NormalizationTests.m │ │ ├── PlotRealProfiles.m │ │ ├── SQGModeRelativeErrorTests.m │ │ ├── SampleLatmixProfiles.mat │ │ ├── ShowCyprusModes.m │ │ ├── ShowGibbsForPoorlyResolvedProfile.m │ │ ├── SpectralInitialization.m │ │ ├── TestAdaptiveAlgorithm.m │ │ └── TestAdaptiveAlgorithmPointAllocation.m │ └── UpperBoundary.m ├── InternalWaveModel │ ├── Examples │ │ ├── CheckGMSpectrumFromModelOutput.m │ │ ├── CreateGaussianInitialConditions.m │ │ ├── ExploreResolvedWaveModes.mlx │ │ ├── InitializeWithExponentialProfile.m │ │ ├── InternalWave.png │ │ ├── MakeInternalWaveFigure.m │ │ └── SaveModelOutputToNetCDF.m │ ├── FlowConstituent.m │ ├── InternalWaveModel.m │ ├── InternalWaveModelArbitraryStratification.m │ ├── InternalWaveModelArbitraryStratificationOld.m │ ├── InternalWaveModelConstantStratification.m │ ├── InternalWaveModelExponentialStratification.m │ ├── InternalWaveModelNetCDFTools.m │ ├── README.md │ └── UnitTests │ │ ├── CheckAllPlaneWaveSolutions.m │ │ ├── CheckPlaneWaveParticleAdvection.m │ │ ├── CheckPlaneWaveParticleAdvectionAtTheBoundary.m │ │ ├── CheckSpectralInterpolation.m │ │ ├── CheckWavenumberCutoff.m │ │ ├── ComputeErtelPV.m │ │ ├── CustomSpectrumTest.m │ │ ├── GMExponentialUnitTest.m │ │ ├── InternalExternalGMSpectrumUnitTest.m │ │ ├── InternalWaveModelGMSpectrumUnitTest.m │ │ ├── InternalWaveModelPlaneWaveExternalUnitTest.m │ │ ├── InternalWaveModelPlaneWaveUnitTest.m │ │ ├── README.md │ │ ├── SpectralDerivativeTests.m │ │ ├── TestEVPCache.m │ │ ├── TestPlaceParticlesOnIsyopycnal.m │ │ ├── TimeStepOptimizationTest.m │ │ ├── WaveVortexDecompositionTest.m │ │ ├── WaveVortexFluxTest.m │ │ └── plot_energetics_IWVM.m ├── InternalWaveSpectrum │ ├── Extras │ │ ├── ExponentialModeProjectionOnSmallConstantStratification.m │ │ ├── LoadFigureDefaults.m │ │ ├── MakeLabelsForFrequencies.m │ │ ├── NonOrthogonality.m │ │ ├── SWOT vs IGW SSH spectrum.eps │ │ ├── SWOT vs IGW SSH spectrum.pdf │ │ ├── ShowGMSpectrum.m │ │ ├── ShowGMSpectrumConstantStratification.m │ │ ├── ShowGMSpectrumConstantStratificationWavenumbers.m │ │ ├── ShowGMSpectrumForExponentialProfile.m │ │ ├── ShowGMSpectrumForModelRun.m │ │ ├── ShowGMSpectrumForWavenumbers.m │ │ ├── ShowHorizontalVelocitySpectra.m │ │ ├── ShowSSHSpectrum.m │ │ ├── ShowSSHSpectrumRange.m │ │ ├── SpeedProfileStructureFunctionGeneration.m │ │ ├── VarianceSumsScratch.m │ │ ├── VerticalVariances.pdf │ │ ├── VerticalVariancesWKB.pdf │ │ ├── cmocean.m │ │ └── tightfig.m │ ├── GarrettMunkSpectrum.m │ ├── GarrettMunkSpectrumConstantStratification.m │ ├── Old │ │ ├── GarrettMunkHorizontalKineticEnergyRotarySpectrum.m │ │ ├── GarrettMunkHorizontalKineticEnergyRotarySpectrumWKB.m │ │ ├── GarrettMunkHorizontalKineticEnergySpectrumWKB.m │ │ ├── GarrettMunkHorizontalVelocitySpectrum.m │ │ ├── HKEVerticalStructureFunction.m │ │ └── VerticalStructureFunctionsConstantStratification.m │ ├── PrecomputedProfiles │ │ ├── .gitattributes │ │ ├── PrecomputeProfile.m │ │ ├── constant.mat │ │ ├── exponential-free-surface.mat │ │ ├── exponential.mat │ │ ├── latmix-site1-free-surface.mat │ │ └── latmix-site1.mat │ └── README.md ├── ModelDiagnostics │ ├── Examples │ │ ├── ComputePVonParticles.m │ │ └── ShowSomeSpectra.m │ ├── ModelDiagnostics.m │ └── ModelDiagnosticsWintersModel.m ├── NetCDF │ ├── .gitignore │ ├── NetCDFComplexVariable.m │ ├── NetCDFDimension.m │ ├── NetCDFFile.m │ ├── NetCDFGroup.m │ ├── NetCDFRealVariable.m │ ├── NetCDFVariable.m │ ├── TestAddFunctionHandle.m │ ├── TestDuplicateFile.m │ └── UnitTests.m ├── OceanBoundaryLayer │ ├── OBLModelTransferFunction_DampedSlab.m │ ├── OBLModelTransferFunction_InfiniteLayerConstantK.m │ ├── OBLModelTransferFunction_OneLayerConstantK.m │ ├── OBLModelTransferFunction_OneLayerLinearK.m │ ├── OBLModel_DampedSlab.m │ ├── OBLModel_InfiniteLayerConstantK.m │ ├── OBLModel_OneLayerConstantK.m │ ├── OBLModel_OneLayerLinearK.m │ ├── OS_PAPA_200706_D_TM_50N145W_10m.nc │ ├── PapaWindRecord.m │ └── StressFromWindVector.m ├── Quasigeostrophy │ ├── CheckResolutionDoubling.m │ ├── EnergySpectrumFromSSH.m │ ├── ExtractDriftersToMatlabWithFields.m │ ├── ExtractTwoLayerDriftersToMatlabWithFields.m │ ├── FieldsFromStreamFunction.m │ ├── FieldsFromTurbulenceFile.m │ └── MakeMaternFits.m ├── StokesDrift │ ├── SaveIC_EarlyIWmodel.nc │ ├── SaveIC_EarlyIWmodel_171120.m │ ├── SaveIC_EarlyIWmodel_171205.m │ ├── Scratch │ │ ├── codes_etc │ │ │ ├── FlowSolveConfig │ │ │ ├── Make.inc │ │ │ ├── input │ │ │ │ ├── BoundaryConditions │ │ │ │ ├── BoundaryConditions.eric │ │ │ │ ├── BoundaryConditions_periodic │ │ │ │ ├── DifferentiationMethods │ │ │ │ ├── DifferentiationMethods.eric │ │ │ │ ├── DifferentiationMethods_periodic │ │ │ │ ├── README │ │ │ │ ├── SaveIC_EarlyIWmodel_64x64x65.nc │ │ │ │ ├── SaveIC_EarlyIWmodel_exp_strat.nc │ │ │ │ ├── UBC_stability_params.xls │ │ │ │ ├── bv_profile.m │ │ │ │ ├── cat_slices.pl │ │ │ │ ├── concat.m │ │ │ │ ├── concat_across_z.pl │ │ │ │ ├── ebudget_0111.m │ │ │ │ ├── explicit_rhs.f90 │ │ │ │ ├── flow_solve_read_from_file.f90 │ │ │ │ ├── flow_solve_user.bak │ │ │ │ ├── flow_solve_user.bak2 │ │ │ │ ├── flow_solve_user.f90 │ │ │ │ ├── flow_solve_user.f90.bak │ │ │ │ ├── flow_solve_user_050114.f90 │ │ │ │ ├── flow_solve_user_TG.f90 │ │ │ │ ├── flow_solve_user_mp.f90 │ │ │ │ ├── flow_solve_user_singleprocessor.f90 │ │ │ │ ├── high_order_diffusion_params │ │ │ │ ├── io_params │ │ │ │ ├── io_params.bak2 │ │ │ │ ├── io_params256128 │ │ │ │ ├── problem_params │ │ │ │ ├── problem_params.bak │ │ │ │ ├── sample_image.png │ │ │ │ ├── split_data.m │ │ │ │ ├── test.m │ │ │ │ ├── user_params_module.f90 │ │ │ │ └── view_slices.m │ │ │ └── src │ │ │ │ ├── Make.inc │ │ │ │ ├── Makefile │ │ │ │ ├── allocate_memory.f90 │ │ │ │ ├── apply_forcing.f90 │ │ │ │ ├── data_modules.f90 │ │ │ │ ├── deboor.f │ │ │ │ ├── decomposition2D.f90 │ │ │ │ ├── deriv_toolbox.f90 │ │ │ │ ├── differentiate.f90 │ │ │ │ ├── eos.f90 │ │ │ │ ├── explicit_rhs.f90 │ │ │ │ ├── explicit_time_step.f90 │ │ │ │ ├── flow_solve.f90 │ │ │ │ ├── flow_solve_user.f90 │ │ │ │ ├── flow_solve_utils.f90 │ │ │ │ ├── immersed_boundary.f90 │ │ │ │ ├── initial_conditions.bak │ │ │ │ ├── initial_conditions.f90 │ │ │ │ ├── initialize.f90 │ │ │ │ ├── interpolation_routines.f90 │ │ │ │ ├── machine.f90 │ │ │ │ ├── mpi_utils.f90 │ │ │ │ ├── newton.f │ │ │ │ ├── p3dfft │ │ │ │ ├── Make.inc │ │ │ │ ├── README │ │ │ │ ├── comm2D.F │ │ │ │ ├── makefile │ │ │ │ ├── makefile.datastar │ │ │ │ ├── makefile_dmitry │ │ │ │ ├── module.F │ │ │ │ ├── setup.f │ │ │ │ └── test1_2D.f │ │ │ │ ├── particle_routines.f90 │ │ │ │ ├── preliminary_tasks.f90 │ │ │ │ ├── pressure_projection.f90 │ │ │ │ ├── read_userdata.f90 │ │ │ │ ├── setup_derivs.f90 │ │ │ │ ├── setup_diffusion.f90 │ │ │ │ ├── setup_domain.f90 │ │ │ │ ├── setup_immersed_boundary.f90 │ │ │ │ ├── test_driver.f90 │ │ │ │ ├── transform_xy.f90 │ │ │ │ ├── transpose_routines.f90 │ │ │ │ ├── user_params_module.f90 │ │ │ │ ├── write_results.f90 │ │ │ │ └── z_poisson_solver.f90 │ │ └── problem_params │ ├── ShowConstantStratificationStokesDrift.m │ ├── ShowNonlinearStokesDriftFromGriddedModel.m │ ├── ShowStokesDrift.m │ ├── ShowStokesDriftFromGriddedModel.m │ ├── StokesSolutionScratch.mw │ ├── load_io_params.m │ └── load_problem_params.m ├── WaveVortexModel │ ├── .gitignore │ ├── @WVGeometryCartesianXYZ │ │ ├── WVGeometryCartesianXYZ.m │ │ ├── indexFromModeNumber.m │ │ ├── isValidConjugateModeNumber.m │ │ ├── isValidModeNumber.m │ │ ├── isValidPrimaryModeNumber.m │ │ └── modeNumberFromIndex.m │ ├── @WVGeometryDoublyPeriodic │ │ ├── WVGeometryDoublyPeriodic.m │ │ ├── detailedDescription │ │ │ ├── Lx.md │ │ │ ├── Ly.md │ │ │ ├── kRadial.md │ │ │ ├── k_dft.md │ │ │ ├── l_dft.md │ │ │ ├── x.md │ │ │ └── y.md │ │ ├── transformToKLAxes.m │ │ └── transformToRadialWavenumber.m │ ├── @WVGeometryDoublyPeriodicBarotropic │ │ └── WVGeometryDoublyPeriodicBarotropic.m │ ├── @WVGeometryDoublyPeriodicStratified │ │ ├── WVGeometryDoublyPeriodicStratified.m │ │ ├── crossSpectrumWithFgTransform.m │ │ ├── crossSpectrumWithGgTransform.m │ │ ├── diffZF.m │ │ ├── diffZG.m │ │ ├── spectrumWithFgTransform.m │ │ ├── spectrumWithGgTransform.m │ │ ├── transformToOmegaAxis.m │ │ ├── transformToPseudoRadialWavenumber.m │ │ ├── transformToPseudoRadialWavenumberA0.m │ │ └── transformToPseudoRadialWavenumberApm.m │ ├── @WVGeometryDoublyPeriodicStratifiedBoussinesq │ │ └── WVGeometryDoublyPeriodicStratifiedBoussinesq.m │ ├── @WVGeometryDoublyPeriodicStratifiedConstant │ │ ├── CosineTransformBackMatrix.m │ │ ├── CosineTransformForwardMatrix.m │ │ ├── SineTransformBackMatrix.m │ │ ├── SineTransformForwardMatrix.m │ │ ├── WVGeometryDoublyPeriodicStratifiedConstant.m │ │ ├── diffZF.m │ │ └── diffZG.m │ ├── @WVModel │ │ ├── WVModel.m │ │ └── modelFromFile.m │ ├── @WVOffGridTransform │ │ ├── WVOffGridTransform.m │ │ ├── fillOutWaveSpectrum.m │ │ └── removed_from_wvtransform.m │ ├── @WVStratification │ │ ├── FMatrix.md │ │ ├── FinvMatrix.md │ │ ├── GMatrix.md │ │ ├── GinvMatrix.md │ │ ├── N2.md │ │ ├── WVStratification.m │ │ ├── dLnN2.md │ │ ├── diffZF.md │ │ ├── diffZG.md │ │ ├── quadraturePointsForStratifiedFlow.m │ │ ├── rho_nm.md │ │ ├── verticalModes.md │ │ ├── verticalProjectionOperatorsWithFreeSurface.m │ │ └── verticalProjectionOperatorsWithRigidLid.m │ ├── @WVTransform │ │ ├── WVTransform.m │ │ ├── addFlowComponent.m │ │ ├── addOperation.m │ │ ├── addPrimaryFlowComponent.m │ │ ├── addRandomFlow.m │ │ ├── addToVariableCache.m │ │ ├── addUVEta.m │ │ ├── classDefinedOperationForKnownVariable.m │ │ ├── clearVariableCacheOfApAmA0DependentVariables.m │ │ ├── clearVariableCacheOfTimeDependentVariables.m │ │ ├── concatenateVariablesAlongTimeDimension.m │ │ ├── convertFromWavenumberToFrequency.m │ │ ├── createNetCDFFileForTimeStepOutput.m │ │ ├── defaultMethodAnnotations.m │ │ ├── defaultOperations.m │ │ ├── detailedDescriptions │ │ │ ├── A0.md │ │ │ ├── A0N.md │ │ │ ├── A0U.md │ │ │ ├── A0V.md │ │ │ ├── A0_HKE_factor.md │ │ │ ├── A0_PE_factor.md │ │ │ ├── A0_QGPV_factor.md │ │ │ ├── A0_TE_factor.md │ │ │ ├── A0_TZ_factor.md │ │ │ ├── A0t.md │ │ │ ├── Am.md │ │ │ ├── AmN.md │ │ │ ├── AmU.md │ │ │ ├── AmV.md │ │ │ ├── Amt.md │ │ │ ├── Ap.md │ │ │ ├── ApN.md │ │ │ ├── ApU.md │ │ │ ├── ApV.md │ │ │ ├── Apm_TE_factor.md │ │ │ ├── Apt.md │ │ │ ├── Lz.md │ │ │ ├── NA0.md │ │ │ ├── NAm.md │ │ │ ├── NAp.md │ │ │ ├── UA0.md │ │ │ ├── UAm.md │ │ │ ├── UAp.md │ │ │ ├── VA0.md │ │ │ ├── VAm.md │ │ │ ├── VAp.md │ │ │ ├── WAm.md │ │ │ ├── WAp.md │ │ │ ├── f0.md │ │ │ ├── inertialPeriod.md │ │ │ ├── j.md │ │ │ ├── psi.md │ │ │ ├── qgpv.md │ │ │ ├── seaSurfaceHeight.md │ │ │ ├── t.md │ │ │ ├── t0.md │ │ │ ├── totalEnergy.md │ │ │ ├── totalEnergySpatiallyIntegrated.md │ │ │ ├── transformFromSpatialDomainWithFg.md │ │ │ ├── transformFromSpatialDomainWithFio.md │ │ │ ├── transformFromSpatialDomainWithGg.md │ │ │ ├── transformToSpatialDomainWithF.md │ │ │ ├── transformToSpatialDomainWithFAllDerivatives.md │ │ │ ├── transformToSpatialDomainWithG.md │ │ │ ├── transformToSpatialDomainWithGAllDerivatives.md │ │ │ └── z.md │ │ ├── energyFluxFromNonlinearFlux.m │ │ ├── enstrophyFluxFromNonlinearFlux.m │ │ ├── fetchFromVariableCache.m │ │ ├── flowComponentNames.m │ │ ├── flowComponentWithName.m │ │ ├── flowComponents.m │ │ ├── initFromNetCDFFile.m │ │ ├── initWithRandomFlow.m │ │ ├── initWithUVEta.m │ │ ├── initWithUVRho.m │ │ ├── interpolatedFieldAtPosition.m │ │ ├── nonlinearFluxForFlowComponents.m │ │ ├── nonlinearFluxWithGradientMasks.m │ │ ├── nonlinearFluxWithMask.m │ │ ├── operationForKnownVariable.m │ │ ├── operationWithName.m │ │ ├── optimizedTransformsForFlowComponent.m │ │ ├── performOperation.m │ │ ├── performOperationWithName.m │ │ ├── primaryFlowComponentNames.m │ │ ├── primaryFlowComponentWithName.m │ │ ├── propertyAnnotationForKnownVariable.m │ │ ├── removeAll.m │ │ ├── removeOperation.m │ │ ├── spectralVariableWithResolution.m │ │ ├── summarizeDegreesOfFreedom.m │ │ ├── summarizeEnergyContent.m │ │ ├── summarizeModeEnergy.m │ │ ├── transformUVEtaToWaveVortex.m │ │ ├── transformWaveVortexToUVWEta.m │ │ ├── variableAtPositionWithName.m │ │ ├── variableWithName.m │ │ ├── waveVortexTransformFromFile.m │ │ ├── waveVortexTransformWithDoubleResolution.m │ │ └── writeToFile.m │ ├── @WVTransformBarotropicQG │ │ ├── WVTransformBarotropicQG.m │ │ ├── interpolatedFieldAtPosition.m │ │ └── summarizeDegreesOfFreedom.m │ ├── @WVTransformBoussinesq │ │ ├── WVTransformBoussinesq.m │ │ ├── transformUVEtaToWaveVortex.m │ │ └── transformUVWEtaToWaveVortex.m │ ├── @WVTransformBoussinesqOld │ │ └── WVTransformBoussinesqOld.m │ ├── @WVTransformConstantStratification │ │ ├── WVTransformConstantStratification.m │ │ ├── speedTest.m │ │ ├── transformUVEtaToWaveVortex.m │ │ └── transformUVWEtaToWaveVortex.m │ ├── @WVTransformConstantStratificationOld │ │ ├── N0.md │ │ ├── N2AtDepth.m │ │ ├── PlaceParticlesOnIsopycnal.m │ │ ├── RhoBarAtDepth.m │ │ ├── WVTransformConstantStratification.m │ │ ├── defaultPropertyAnnotations.m │ │ ├── detailedDescriptions │ │ │ ├── F.md │ │ │ ├── G.md │ │ │ └── h.md │ │ ├── waveVortexTransformFromFile.m │ │ └── writeToFile.m │ ├── @WVTransformHydrostatic │ │ ├── WVTransformHydrostatic.m │ │ └── transformUVEtaToWaveVortex.m │ ├── @WVTransformStratifiedQG │ │ ├── WVTransformStratifiedQG.m │ │ └── transformUVEtaToWaveVortex.m │ ├── ArgumentValidationFunctions │ │ └── mustBeDoulbyPeriodicFPlane.m │ ├── Documentation │ │ ├── ClassHierarchy.graffle │ │ ├── ClassHierarchy.pdf │ │ ├── README.md │ │ ├── WebsiteBuilder │ │ │ ├── ClassDocumentation.m │ │ │ ├── FunctionType.m │ │ │ ├── MethodDocumentation.m │ │ │ ├── README.md │ │ │ ├── Topic.m │ │ │ ├── WVTransformDocumentation.m │ │ │ ├── WVTransformSubclassDocumentation.m │ │ │ └── WebsiteBuilder.m │ │ └── WebsiteDocumentation │ │ │ ├── CNAME │ │ │ ├── _config.yml │ │ │ ├── _includes │ │ │ └── head_custom.html │ │ │ ├── _sass │ │ │ └── custom │ │ │ │ └── custom.scss │ │ │ ├── classes │ │ │ ├── flow-components │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── nonlinear-fluxes │ │ │ │ └── index.md │ │ │ ├── operations-and-annotations │ │ │ │ └── index.md │ │ │ └── transforms │ │ │ │ └── index.md │ │ │ ├── developers-guide │ │ │ ├── class-annotations.md │ │ │ ├── index.md │ │ │ ├── operations-and-variables.md │ │ │ ├── primary-flow-components.md │ │ │ ├── property-and-method-types.md │ │ │ └── style-guide.md │ │ │ ├── index.md │ │ │ ├── mathematical-introduction │ │ │ ├── index.md │ │ │ ├── introduction.md │ │ │ ├── orthogonality.md │ │ │ └── transformations.md │ │ │ └── users-guide │ │ │ ├── creating-new-state-variables.md │ │ │ ├── index.md │ │ │ ├── introduction.md │ │ │ ├── netcdf-output.md │ │ │ ├── nonlinear-flux-operations.md │ │ │ ├── reading-and-writing-to-file-advanced.md │ │ │ ├── reading-and-writing-to-file.md │ │ │ ├── using-the-wvtransform.md │ │ │ └── wavenumber-modes-and-indices.md │ ├── Example │ │ ├── BetaEddyOne │ │ │ ├── BetaEddyOne.m │ │ │ ├── BetaEddyOne_AddMeta.m │ │ │ └── makefigs_stokes.m │ │ ├── CyprusEddy │ │ │ ├── CyprusEddy.m │ │ │ ├── CyprusEddyNewIntegrator.m │ │ │ ├── ReadCyprusEddy.m │ │ │ ├── ShowEnergyDecompositionVsTime.m │ │ │ └── ShowNonlinearFluxesFourPanel.m │ │ ├── ForcedDissipativeQG │ │ │ ├── AnalyzeParticleTrajectories.m │ │ │ ├── DiagnoseEnergyFluxes.m │ │ │ ├── DiagnoseEnstrophyFlux.m │ │ │ ├── README.md │ │ │ ├── RestartAndAddParticles.m │ │ │ ├── RestartAndDoubleResolution.m │ │ │ ├── RestartAndSpinDownWithParticles.m │ │ │ └── SpinUp.m │ │ ├── IGWStokesDrift │ │ │ ├── InternalGravityWave.m │ │ │ └── InternalGravityWaveToNetCDFFile.m │ │ ├── InternalGravityWaveSimulation │ │ │ ├── IGWSimulation.m │ │ │ ├── IGWSimulationWithConstituentFluxes.m │ │ │ ├── ShowEnergyDecompositionVsTime.m │ │ │ └── ShowNonlinearFluxConstituentsOverTime.m │ │ ├── QGDipole │ │ │ └── QGDipole.m │ │ ├── QGMonopole3D │ │ │ ├── MakeFigures.m │ │ │ ├── QGMonopole3D.m │ │ │ └── SpinUp.m │ │ ├── Tutorial │ │ │ ├── Tutorial_001_initialize_a_wave.mlx │ │ │ ├── Tutorial_002_write_to_file.mlx │ │ │ ├── Tutorial_003_advect_particles.m │ │ │ ├── Tutorial_003_advect_particles.mlx │ │ │ ├── Tutorial_004_assignment.m │ │ │ └── Tutorial_day3practice.m │ │ └── need-to-be-updated │ │ │ ├── SpinUp.m │ │ │ └── WavePacket.m │ ├── FastTransforms │ │ ├── @WVFastTransformDoublyPeriodicFFTW │ │ │ ├── WVFastTransformDoublyPeriodicFFTW.m │ │ │ ├── diffX.m │ │ │ ├── diffXIntoArray.m │ │ │ ├── diffY.m │ │ │ ├── transformFromSpatialDomainWithFourier.m │ │ │ └── transformToSpatialDomainWithFourier.m │ │ ├── @WVFastTransformDoublyPeriodicMatlab │ │ │ ├── WVFastTransformDoublyPeriodicMatlab.m │ │ │ ├── diffX.m │ │ │ ├── diffY.m │ │ │ ├── transformFromSpatialDomainWithFourier.m │ │ │ └── transformToSpatialDomainWithFourier.m │ │ └── WVFastTransformDoublyPeriodic.m │ ├── FlowComponents │ │ ├── WVGeostrophicComponent.m │ │ ├── WVGeostrophicMethods.m │ │ ├── WVInertialOscillationComponent.m │ │ ├── WVInertialOscillationMethods.m │ │ ├── WVInternalGravityWaveComponent.m │ │ ├── WVInternalGravityWaveMethods.m │ │ ├── WVMeanDensityAnomalyComponent.m │ │ ├── WVMeanDensityAnomalyMethods.m │ │ ├── geostrophicEnergy.md │ │ ├── inertialEnergy.md │ │ ├── mdaEnergy.md │ │ └── waveEnergy.md │ ├── Forcing │ │ ├── WVAdaptiveDamping.m │ │ ├── WVAdaptiveDiffusivity.m │ │ ├── WVAdaptiveViscosity.m │ │ ├── WVAntialiasing.m │ │ ├── WVBetaPlanePVAdvection.m │ │ ├── WVBottomFrictionLinear.m │ │ ├── WVBottomFrictionQuadratic.m │ │ ├── WVFixedAmplitudeForcing.m │ │ ├── WVHorizontalScalarDiffusivity.m │ │ ├── WVMeanFlowForcing.m │ │ ├── WVNonlinearAdvection.m │ │ ├── WVSpectralVanishingViscosity.m │ │ ├── WVThermalDamping.m │ │ ├── WVVerticalDiffusivity.m │ │ └── WVVerticalScalarDiffusivity.m │ ├── Integrators │ │ ├── WVModelAdapativeTimeStepCellMethods.m │ │ ├── WVModelAdapativeTimeStepMethods.m │ │ ├── WVModelFixedTimeStepMethods.m │ │ └── ode45_cell.m │ ├── ObservingSystems │ │ ├── WVCoefficients.m │ │ ├── WVEulerianFields.m │ │ ├── WVLagrangianParticles.m │ │ ├── WVMooring.m │ │ └── WVTracer.m │ ├── Operations │ │ ├── APEOperation.m │ │ ├── APVOperation.m │ │ ├── EtaTrueOperation.m │ │ └── SpatialForcingOperation.m │ ├── README.md │ ├── UnitTests │ │ ├── IsSameSolutionAs.m │ │ ├── IsolatedUnitTestScratch.m │ │ ├── MiscTests │ │ │ ├── CheckAllPlaneWaveSolutions.m │ │ │ ├── CheckForBailey.m │ │ │ ├── CheckGeostrophicSpectrum.m │ │ │ ├── CheckHermitian.m │ │ │ ├── CheckInversionAndConjugacy.m │ │ │ ├── CheckMDAInversion.m │ │ │ ├── CheckPlaneWaveParticleAdvection.m │ │ │ ├── CheckWithAnalyticalSolutions.m │ │ │ ├── ClassReadWriteTests.m │ │ │ ├── FFTCoefficientTable.m │ │ │ ├── FFTWTests.m │ │ │ ├── FluxComparisonScratch.m │ │ │ ├── ForcingSpectralMaskPerformanceTest.m │ │ │ ├── GMSpectrumUnitTest.m │ │ │ ├── GarrettMunkSpectrumTest.m │ │ │ ├── GaussQuadraturePointsAsFunctionOfK.m │ │ │ ├── HydrostaticInitializationTest.m │ │ │ ├── IndexTests.m │ │ │ ├── InternalExternalGMSpectrumUnitTest.m │ │ │ ├── ModalDerivativeTest.m │ │ │ ├── ModelComparison.m │ │ │ ├── MultipleInheritanceTests │ │ │ │ ├── ClassA.m │ │ │ │ ├── ClassAB.m │ │ │ │ └── ClassB.m │ │ │ ├── NetCDFFileTests.m │ │ │ ├── NonlinearFluxScratch.m │ │ │ ├── NonlinearFluxUnitTestScratch.m │ │ │ ├── QuadraticAliasing.m │ │ │ ├── QuadraturePointsAsFunctionOfK.pdf │ │ │ ├── QuadratureWeights.m │ │ │ ├── QuadratureWeightsRevisited.m │ │ │ ├── ReadWriteForcingModules.m │ │ │ ├── ReadWriteStratifiedFlow.m │ │ │ ├── ReportErrors.m │ │ │ ├── SetStreamFunctionUnitTest.m │ │ │ ├── SpectralDifferentiationTest3D.m │ │ │ ├── TimeLoop.m │ │ │ ├── TransformTests.m │ │ │ ├── TransitionToNonhydrostaticModes.m │ │ │ ├── VerticalModeComparison.m │ │ │ ├── VerticalProjection.m │ │ │ ├── WaveVortexTransformTestConstantStrat.m │ │ │ ├── WaveVortexTransformTestHydrostatic.m │ │ │ ├── masksForRedundantHermitianCoefficients.m │ │ │ └── test_IWM_WVM.m │ │ ├── ProfileableSpeedTest.m │ │ ├── README.md │ │ ├── RunAllUnitTests.m │ │ ├── TestDivergence.m │ │ ├── TestFourierTransformXY.m │ │ ├── TestGeostrophicMethods.m │ │ ├── TestInertialOscillationMethods.m │ │ ├── TestInternalGravityWaveMethods.m │ │ ├── TestNetCDF.m │ │ ├── TestNonlinearFlux.m │ │ ├── TestOrthogonalSolutionGroups.m │ │ ├── TestRadialTransformation.m │ │ ├── TestRandomFlow.m │ │ ├── TestSpectralDifferentiationXY.m │ │ ├── TestSpectralDifferentiationZ.m │ │ └── TestWVTransformInitialization.m │ ├── WVAnnotation.m │ ├── WVArrayIntegrator.m │ ├── WVCoefficientMatrix.m │ ├── WVDimensionAnnotation.m │ ├── WVFlowComponent.m │ ├── WVForcing.m │ ├── WVForcingType.m │ ├── WVModelOutputFile.m │ ├── WVModelOutputGroup.m │ ├── WVModelOutputGroupEvenlySpaced.m │ ├── WVModelOutputGroupOld.m │ ├── WVNonlinearFluxOperation.m │ ├── WVNonlinearFluxOperation.md │ ├── WVObservingSystem.m │ ├── WVOperation.m │ ├── WVOperation.md │ ├── WVOrthogonalSolution.m │ ├── WVPrimaryFlowComponent.m │ ├── WVPropertyAnnotation.m │ ├── WVRotatingFPlane.m │ ├── WVTotalFlowComponent.m │ ├── WVVariableAnnotation.m │ └── garbage │ │ ├── spatialDimensionNames.m │ │ └── spectralDimensionNames.m └── WintersModel │ ├── Examples │ ├── CheckHyperviscosityBoundaries.m │ ├── CheckHyperviscositySetting.m │ ├── ExtractParticlesToMatlab.m │ ├── PlotWaveVortexAutocorrelation.m │ ├── ReadOutputFilesTest.m │ ├── SaveMooringTimeSeries.m │ ├── SaveWaveVortexDecomposition.m │ ├── SaveWaveVortexDecorrelationTimeMatrix.m │ ├── ShowWaveVortexEnergyVsTime.m │ └── TestWaveVortexDecomposition.m │ ├── Notes │ ├── .gitignore │ ├── damping-in-the-winters-model.pdf │ └── damping-in-the-winters-model.tex │ └── WintersModel.m ├── README.md └── docs ├── CNAME ├── _config.yml ├── _includes └── head_custom.html ├── _sass └── custom │ └── custom.scss ├── classes ├── flow-components │ ├── index.md │ ├── wvflowcomponent │ │ ├── abbreviatedname.md │ │ ├── index.md │ │ ├── maska0.md │ │ ├── maskam.md │ │ ├── maskap.md │ │ ├── name.md │ │ ├── plus.md │ │ ├── randomamplitudes.md │ │ ├── randomamplitudeswithspectrum.md │ │ ├── shortname.md │ │ ├── wvflowcomponent.md │ │ └── wvt.md │ ├── wvgeostrophiccomponent │ │ ├── enstrophyfactorfora0.md │ │ ├── geostrophicsolution.md │ │ ├── geostrophicspatialtransformcoefficients.md │ │ ├── geostrophicspectraltransformcoefficients.md │ │ ├── hkefactorfora0.md │ │ ├── index.md │ │ ├── maskofprimarymodesforcoefficientmatrix.md │ │ ├── normalizegeostrophicmodeproperties.md │ │ ├── pefactorfora0.md │ │ ├── qgpvfactorfora0.md │ │ ├── solutionformodeatindex.md │ │ ├── totalenergyfactorforcoefficientmatrix.md │ │ └── wvgeostrophiccomponent.md │ ├── wvinertialoscillationcomponent │ │ ├── index.md │ │ ├── inertialoscillationsolution.md │ │ ├── inertialoscillationspatialtransformcoefficients.md │ │ ├── maskofconjugatemodesforcoefficientmatrix.md │ │ ├── maskofprimarymodesforcoefficientmatrix.md │ │ ├── solutionformodeatindex.md │ │ ├── totalenergyfactorforcoefficientmatrix.md │ │ └── wvinertialoscillationcomponent.md │ ├── wvinternalgravitywavecomponent │ │ ├── index.md │ │ ├── internalgravitywavesolution.md │ │ ├── internalgravitywavespatialtransformcoefficients.md │ │ ├── internalgravitywavespectraltransformcoefficients.md │ │ ├── maskofprimarymodesforcoefficientmatrix.md │ │ ├── normalizewavemodeproperties.md │ │ ├── solutionformodeatindex.md │ │ ├── summarizemodeatindex.md │ │ ├── totalenergyfactorforcoefficientmatrix.md │ │ └── wvinternalgravitywavecomponent.md │ ├── wvmeandensityanomalycomponent │ │ ├── enstrophyfactorfora0.md │ │ ├── index.md │ │ ├── maskofprimarymodesforcoefficientmatrix.md │ │ ├── meandensityanomalysolution.md │ │ ├── meandensityanomalyspatialtransformcoefficients.md │ │ ├── meandensityanomalyspectraltransformcoefficients.md │ │ ├── qgpvfactorfora0.md │ │ ├── solutionformodeatindex.md │ │ ├── totalenergyfactorforcoefficientmatrix.md │ │ └── wvmeandensityanomalycomponent.md │ └── wvprimaryflowcomponent │ │ ├── enstrophyfactorfora0.md │ │ ├── index.md │ │ ├── isvalidconjugatemodenumber.md │ │ ├── isvalidmodenumber.md │ │ ├── isvalidprimarymodenumber.md │ │ ├── maskofconjugatemodesforcoefficientmatrix.md │ │ ├── maskofmodesforcoefficientmatrix.md │ │ ├── maskofprimarymodesforcoefficientmatrix.md │ │ ├── nmodes.md │ │ ├── qgpvfactorfora0.md │ │ ├── solutionformodeatindex.md │ │ ├── totalenergyfactorforcoefficientmatrix.md │ │ └── wvprimaryflowcomponent.md ├── index.md ├── netcdffile │ ├── addattribute.md │ ├── adddimension.md │ ├── addmutabledimension.md │ ├── addvariable.md │ ├── attributes.md │ ├── close.md │ ├── complexvariables.md │ ├── complexvariablewithname.md │ ├── concatenatevariablealongdimension.md │ ├── createnewfile.md │ ├── dimensions.md │ ├── dimensionsfordimids.md │ ├── dimensionwithname.md │ ├── dump.md │ ├── format.md │ ├── glnetcdfschemabasisfunctionkey.md │ ├── glnetcdfschemadomainlengthkey.md │ ├── glnetcdfschemadomainminimumkey.md │ ├── glnetcdfschemagridtypekey.md │ ├── glnetcdfschemaiscomplexkey.md │ ├── glnetcdfschemaiscoordinatevariablekey.md │ ├── glnetcdfschemaisevenlysampledkey.md │ ├── glnetcdfschemaisfrequencydomainkey.md │ ├── glnetcdfschemaisimaginarypartkey.md │ ├── glnetcdfschemaisperidiockey.md │ ├── glnetcdfschemaisrealpartkey.md │ ├── glnetcdfschemaisrowvectorkey.md │ ├── glnetcdfschemamutablekey.md │ ├── glnetcdfschemapropernamekey.md │ ├── glnetcdfschemasampleintervalkey.md │ ├── glnetcdfschemauniquevariableidkey.md │ ├── glnetcdfschemaunitskey.md │ ├── glnetcdfschemaversionkey.md │ ├── index.md │ ├── initcomplexvariable.md │ ├── initializefromexistingfile.md │ ├── initvariable.md │ ├── ncid.md │ ├── netcdf3typefordata.md │ ├── netcdffile.md │ ├── netcdftypefordata.md │ ├── open.md │ ├── path.md │ ├── readvariables.md │ ├── readvariablesatindexalongdimension.md │ ├── setvariable.md │ ├── sync.md │ ├── typestringfortypeid.md │ ├── variables.md │ └── variablewithname.md ├── nonlinear-fluxes │ ├── index.md │ ├── wvnonlinearflux │ │ ├── beta.md │ │ ├── betaa0.md │ │ ├── builddampingoperator.md │ │ ├── compute.md │ │ ├── damp.md │ │ ├── dampingtimescale.md │ │ ├── dlnn2.md │ │ ├── index.md │ │ ├── isequal.md │ │ ├── k_damp.md │ │ ├── k_no_damp.md │ │ ├── nonlinearfluxfromfile.md │ │ ├── nonlinearfluxwithresolutionoftransform.md │ │ ├── nu_xy.md │ │ ├── nu_z.md │ │ ├── r.md │ │ ├── spatialflux.md │ │ ├── uv_damp.md │ │ ├── writetofile.md │ │ ├── wvnonlinearflux.md │ │ └── wvt.md │ ├── wvnonlinearfluxforced │ │ ├── a0bar.md │ │ ├── addvariableoftype.md │ │ ├── ambar.md │ │ ├── apbar.md │ │ ├── compute.md │ │ ├── index.md │ │ ├── isequal.md │ │ ├── ma0.md │ │ ├── mam.md │ │ ├── map.md │ │ ├── nonlinearfluxfromfile.md │ │ ├── nonlinearfluxwithresolutionoftransform.md │ │ ├── setgeostrophicforcingcoefficients.md │ │ ├── setwaveforcingcoefficients.md │ │ ├── tau0.md │ │ ├── taum.md │ │ ├── taup.md │ │ ├── writetofile.md │ │ └── wvnonlinearfluxforced.md │ ├── wvnonlinearfluxoperation │ │ ├── doesfluxa0.md │ │ ├── doesfluxam.md │ │ ├── doesfluxap.md │ │ ├── index.md │ │ ├── isequal.md │ │ ├── nonlinearfluxfromfile.md │ │ ├── nonlinearfluxwithresolutionoftransform.md │ │ ├── writetofile.md │ │ └── wvnonlinearfluxoperation.md │ ├── wvnonlinearfluxqg │ │ ├── a0pv.md │ │ ├── alpha.md │ │ ├── beta.md │ │ ├── builddampingoperator.md │ │ ├── compute.md │ │ ├── damp.md │ │ ├── dampingflux.md │ │ ├── dampingoperator.md │ │ ├── dampingtimescale.md │ │ ├── index.md │ │ ├── inertialflux.md │ │ ├── isequal.md │ │ ├── k_damp.md │ │ ├── nonlinearfluxfromfile.md │ │ ├── nonlinearfluxwithresolutionoftransform.md │ │ ├── nu_xy.md │ │ ├── pva0.md │ │ ├── r.md │ │ ├── rva0.md │ │ ├── uv_damp.md │ │ ├── writetofile.md │ │ ├── wvnonlinearfluxqg.md │ │ └── wvt.md │ ├── wvnonlinearfluxqgforced │ │ ├── a0bar.md │ │ ├── addvariableoftype.md │ │ ├── compute.md │ │ ├── forcingflux.md │ │ ├── index.md │ │ ├── isequal.md │ │ ├── ma0.md │ │ ├── nonlinearfluxfromfile.md │ │ ├── nonlinearfluxwithresolutionoftransform.md │ │ ├── setgeostrophicforcingcoefficients.md │ │ ├── setnarrowbandforcing.md │ │ ├── tau0.md │ │ ├── writetofile.md │ │ └── wvnonlinearfluxqgforced.md │ ├── wvnonlinearfluxspatial │ │ ├── compute.md │ │ ├── dlnn2.md │ │ ├── index.md │ │ └── wvnonlinearfluxspatial.md │ └── wvnonlinearfluxwindforced │ │ ├── f_x.md │ │ ├── f_y.md │ │ ├── index.md │ │ ├── maxt.md │ │ ├── slabdamptime.md │ │ ├── slabdepth.md │ │ ├── slabforcingfromwinds.md │ │ ├── spatialflux.md │ │ ├── t_wind.md │ │ ├── u_wind.md │ │ ├── v_wind.md │ │ └── wvnonlinearfluxwindforced.md ├── operations-and-annotations │ ├── index.md │ ├── wvannotation │ │ ├── attributes.md │ │ ├── description.md │ │ ├── detaileddescription.md │ │ ├── index.md │ │ ├── name.md │ │ └── wvannotation.md │ ├── wvdimensionannotation │ │ ├── index.md │ │ ├── units.md │ │ └── wvdimensionannotation.md │ ├── wvoperation │ │ ├── compute.md │ │ ├── detaileddescription.md │ │ ├── f.md │ │ ├── index.md │ │ ├── name.md │ │ ├── nvarout.md │ │ ├── outputvariables.md │ │ └── wvoperation.md │ ├── wvpropertyannotation │ │ ├── dimensions.md │ │ ├── index.md │ │ ├── iscomplex.md │ │ ├── units.md │ │ └── wvpropertyannotation.md │ └── wvvariableannotation │ │ ├── dimensions.md │ │ ├── index.md │ │ ├── iscomplex.md │ │ ├── isvariablewithlineartimestep.md │ │ ├── isvariablewithnonlineartimestep.md │ │ ├── modelop.md │ │ ├── units.md │ │ └── wvvariableannotation.md ├── transforms │ ├── index.md │ ├── wvtransformboussinesq │ │ ├── addgeostrophicmodes.md │ │ ├── addgeostrophicstreamfunction.md │ │ ├── addgmspectrum.md │ │ ├── addinertialmotions.md │ │ ├── addmeandensityanomaly.md │ │ ├── addwavemodes.md │ │ ├── addwaveswithfrequencyspectrum.md │ │ ├── buildinterpolationprojectionoperators.md │ │ ├── buildinterpolationprojectionoperatorsforgrid.md │ │ ├── buildverticalmodeprojectionoperators.md │ │ ├── diffzf.md │ │ ├── diffzg.md │ │ ├── dlnn2.md │ │ ├── dlnn2function.md │ │ ├── effectiveverticalgridresolution.md │ │ ├── finvmatrix.md │ │ ├── fmatrix.md │ │ ├── geostrophiccomponent.md │ │ ├── geostrophicenergy.md │ │ ├── geostrophickineticenergy.md │ │ ├── geostrophicpotentialenergy.md │ │ ├── ginvmatrix.md │ │ ├── gmatrix.md │ │ ├── index.md │ │ ├── inertialcomponent.md │ │ ├── inertialenergy.md │ │ ├── initwaveswithfrequencyspectrum.md │ │ ├── initwithalternativespectrum.md │ │ ├── initwithgeostrophicstreamfunction.md │ │ ├── initwithgmspectrum.md │ │ ├── initwithinertialmotions.md │ │ ├── initwithmeandensityanomaly.md │ │ ├── initwithwavemodes.md │ │ ├── isdensityinvalidrange.md │ │ ├── maxfg.md │ │ ├── maxfw.md │ │ ├── mdacomponent.md │ │ ├── mdaenergy.md │ │ ├── n2.md │ │ ├── n2function.md │ │ ├── nk2unique.md │ │ ├── removeallgeostrophicmotions.md │ │ ├── removeallinertialmotions.md │ │ ├── removeallmeandensityanomaly.md │ │ ├── removeallwaves.md │ │ ├── rho_nm.md │ │ ├── rhofunction.md │ │ ├── setgeostrophicmodes.md │ │ ├── setgeostrophicstreamfunction.md │ │ ├── setinertialmotions.md │ │ ├── setmeandensityanomaly.md │ │ ├── setwavemodes.md │ │ ├── throwerrorifdensityviolation.md │ │ ├── transformtospatialdomainwithfg.md │ │ ├── transformtospatialdomainwithfinterp.md │ │ ├── transformtospatialdomainwithfw.md │ │ ├── transformtospatialdomainwithgg.md │ │ ├── transformtospatialdomainwithginterp.md │ │ ├── transformtospatialdomainwithgw.md │ │ ├── verticalmodes.md │ │ ├── wavecomponent.md │ │ ├── waveenergy.md │ │ └── wvtransformboussinesq.md │ ├── wvtransformconstantstratification │ │ ├── addgeostrophicmodes.md │ │ ├── addgeostrophicstreamfunction.md │ │ ├── addgmspectrum.md │ │ ├── addinertialmotions.md │ │ ├── addmeandensityanomaly.md │ │ ├── addwavemodes.md │ │ ├── addwaveswithfrequencyspectrum.md │ │ ├── buildverticalmodeprojectionoperators.md │ │ ├── cosinetransformbackmatrix.md │ │ ├── cosinetransformforwardmatrix.md │ │ ├── diffzf.md │ │ ├── diffzg.md │ │ ├── dlnn2.md │ │ ├── dlnn2function.md │ │ ├── effectiveverticalgridresolution.md │ │ ├── finvmatrix.md │ │ ├── fmatrix.md │ │ ├── geostrophiccomponent.md │ │ ├── geostrophicenergy.md │ │ ├── geostrophickineticenergy.md │ │ ├── geostrophicpotentialenergy.md │ │ ├── ginvmatrix.md │ │ ├── gmatrix.md │ │ ├── index.md │ │ ├── inertialcomponent.md │ │ ├── inertialenergy.md │ │ ├── initwaveswithfrequencyspectrum.md │ │ ├── initwithalternativespectrum.md │ │ ├── initwithgeostrophicstreamfunction.md │ │ ├── initwithgmspectrum.md │ │ ├── initwithinertialmotions.md │ │ ├── initwithmeandensityanomaly.md │ │ ├── initwithwavemodes.md │ │ ├── isdensityinvalidrange.md │ │ ├── maxfg.md │ │ ├── maxfw.md │ │ ├── mdacomponent.md │ │ ├── mdaenergy.md │ │ ├── n0.md │ │ ├── n2.md │ │ ├── n2atdepth.md │ │ ├── n2function.md │ │ ├── placeparticlesonisopycnal.md │ │ ├── removeallgeostrophicmotions.md │ │ ├── removeallinertialmotions.md │ │ ├── removeallmeandensityanomaly.md │ │ ├── removeallwaves.md │ │ ├── rho_nm.md │ │ ├── rhobaratdepth.md │ │ ├── rhofunction.md │ │ ├── setgeostrophicmodes.md │ │ ├── setgeostrophicstreamfunction.md │ │ ├── setinertialmotions.md │ │ ├── setmeandensityanomaly.md │ │ ├── setwavemodes.md │ │ ├── sinetransformbackmatrix.md │ │ ├── sinetransformforwardmatrix.md │ │ ├── speedtest.md │ │ ├── throwerrorifdensityviolation.md │ │ ├── transformfromspatialdomainwithf.md │ │ ├── transformfromspatialdomainwithg.md │ │ ├── verticalmodes.md │ │ ├── wavecomponent.md │ │ ├── waveenergy.md │ │ └── wvtransformconstantstratification.md │ └── wvtransformhydrostatic │ │ ├── addgeostrophicmodes.md │ │ ├── addgeostrophicstreamfunction.md │ │ ├── addgmspectrum.md │ │ ├── addinertialmotions.md │ │ ├── addmeandensityanomaly.md │ │ ├── addwavemodes.md │ │ ├── addwaveswithfrequencyspectrum.md │ │ ├── diffzf.md │ │ ├── diffzg.md │ │ ├── dlnn2.md │ │ ├── dlnn2function.md │ │ ├── effectiveverticalgridresolution.md │ │ ├── finvmatrix.md │ │ ├── fmatrix.md │ │ ├── geostrophiccomponent.md │ │ ├── geostrophicenergy.md │ │ ├── geostrophickineticenergy.md │ │ ├── geostrophicpotentialenergy.md │ │ ├── ginvmatrix.md │ │ ├── gmatrix.md │ │ ├── index.md │ │ ├── inertialcomponent.md │ │ ├── inertialenergy.md │ │ ├── initwaveswithfrequencyspectrum.md │ │ ├── initwithalternativespectrum.md │ │ ├── initwithgeostrophicstreamfunction.md │ │ ├── initwithgmspectrum.md │ │ ├── initwithinertialmotions.md │ │ ├── initwithmeandensityanomaly.md │ │ ├── initwithwavemodes.md │ │ ├── isdensityinvalidrange.md │ │ ├── maxfg.md │ │ ├── maxfw.md │ │ ├── mdacomponent.md │ │ ├── mdaenergy.md │ │ ├── n2.md │ │ ├── n2function.md │ │ ├── removeallgeostrophicmotions.md │ │ ├── removeallinertialmotions.md │ │ ├── removeallmeandensityanomaly.md │ │ ├── removeallwaves.md │ │ ├── rho_nm.md │ │ ├── rhofunction.md │ │ ├── setgeostrophicmodes.md │ │ ├── setgeostrophicstreamfunction.md │ │ ├── setinertialmotions.md │ │ ├── setmeandensityanomaly.md │ │ ├── setwavemodes.md │ │ ├── throwerrorifdensityviolation.md │ │ ├── verticalmodes.md │ │ ├── wavecomponent.md │ │ ├── waveenergy.md │ │ └── wvtransformhydrostatic.md ├── wvgeometrydoublyperiodic │ ├── conjugatedimension.md │ ├── degreesoffreedomforcomplexmatrix.md │ ├── degreesoffreedomforrealmatrix.md │ ├── dftconjugateindices.md │ ├── dftprimaryindices.md │ ├── diffx.md │ ├── diffy.md │ ├── index.md │ ├── indicesfromdftgridtowvgrid.md │ ├── indicesfromwvgridtodftgrid.md │ ├── indicesoffourierconjugates.md │ ├── ishermitian.md │ ├── isvalidconjugatewvmodenumber.md │ ├── isvalidprimarywvmodenumber.md │ ├── isvalidwvmodenumber.md │ ├── k_dft.md │ ├── k_wv.md │ ├── kmode_dft.md │ ├── kmode_wv.md │ ├── kradial_wv.md │ ├── l_dft.md │ ├── l_wv.md │ ├── lmode_dft.md │ ├── lmode_wv.md │ ├── lx.md │ ├── ly.md │ ├── maskforaliasedmodes.md │ ├── maskforconjugatefouriercoefficients.md │ ├── maskfornyquistmodes.md │ ├── modenumberfromwvindex.md │ ├── nk_dft.md │ ├── nkl_wv.md │ ├── nl_dft.md │ ├── nx.md │ ├── ny.md │ ├── primarymodenumberfromwvmodenumber.md │ ├── setconjugatetounity.md │ ├── shouldantialias.md │ ├── shouldexcludenyquist.md │ ├── shouldexludeconjugates.md │ ├── transformfromdftgridtowvgrid.md │ ├── transformfromspatialdomain.md │ ├── transformfromwvgridtodftgrid.md │ ├── transformtospatialdomain.md │ ├── transformtospatialdomainatposition.md │ ├── wvgeometrydoublyperiodic.md │ ├── wvindexfrommodenumber.md │ ├── x.md │ └── y.md ├── wvmodel │ ├── addnetcdfoutputvariables.md │ ├── addparticles.md │ ├── addtracer.md │ ├── closenetcdffile.md │ ├── createnetcdffileformodeloutput.md │ ├── didblowup.md │ ├── didinitializenetcdffile.md │ ├── didsetupintegrator.md │ ├── drifterpositions.md │ ├── finalintegrationtime.md │ ├── floatpositions.md │ ├── incrementswrittentofile.md │ ├── index.md │ ├── initialconditiononlyvariables.md │ ├── initializeparticlestorage.md │ ├── initialoutputtime.md │ ├── initialtime.md │ ├── integratetotime.md │ ├── integrationinformtime.md │ ├── integrationlastinformmodeltime.md │ ├── integrationlastinformwalltime.md │ ├── integrationstarttime.md │ ├── integratortype.md │ ├── lineardynamics.md │ ├── modelfromfile.md │ ├── ncfile.md │ ├── netcdfoutputvariables.md │ ├── netcdfvariablemapforparticlewithname.md │ ├── nonlinearfluxoperation.md │ ├── opennetcdffilefortimestepping.md │ ├── outputinterval.md │ ├── particle.md │ ├── particleindexwithname.md │ ├── particlepositions.md │ ├── recordnetcdffilehistory.md │ ├── removenetcdfoutputvariables.md │ ├── setdrifterpositions.md │ ├── setfloatpositions.md │ ├── setnetcdfoutputvariables.md │ ├── setupintegrator.md │ ├── shouldshowintegrationdiagnostics.md │ ├── showintegrationfinishdiagnostics.md │ ├── showintegrationstartdiagnostics.md │ ├── showintegrationtimediagnostics.md │ ├── t.md │ ├── timeoflastincrementwrittentofile.md │ ├── timeseriesvariables.md │ ├── tracer.md │ ├── tracerarray.md │ ├── tracerindexwithname.md │ ├── updateparticletrackedfields.md │ ├── writeparticledataattimeindex.md │ ├── writetimesteptonetcdffile.md │ ├── wvmodel.md │ └── wvt.md └── wvtransform │ ├── a0.md │ ├── a0_qgpv_factor.md │ ├── a0_te_factor.md │ ├── a0_tz_factor.md │ ├── a0n.md │ ├── a0t.md │ ├── a0u.md │ ├── a0v.md │ ├── a0z.md │ ├── adddimensionannotations.md │ ├── addflowcomponent.md │ ├── addoperation.md │ ├── addprimaryflowcomponent.md │ ├── addpropertyannotations.md │ ├── addrandomflow.md │ ├── addtovariablecache.md │ ├── adduveta.md │ ├── addvariableannotations.md │ ├── am.md │ ├── amn.md │ ├── amt.md │ ├── amu.md │ ├── amv.md │ ├── ap.md │ ├── apm_te_factor.md │ ├── apmd.md │ ├── apmn.md │ ├── apn.md │ ├── apt.md │ ├── apu.md │ ├── apv.md │ ├── clearvariablecache.md │ ├── clearvariablecacheoftimedependentvariables.md │ ├── concatenatevariablesalongtimedimension.md │ ├── conjugatedimension.md │ ├── convertfromwavenumbertofrequency.md │ ├── createnetcdffilefortimestepoutput.md │ ├── dftbuffer.md │ ├── dftconjugateindex.md │ ├── dftprimaryindex.md │ ├── diffx.md │ ├── diffy.md │ ├── diffzf.md │ ├── diffzg.md │ ├── dimensionannotationnamemap.md │ ├── dimensionannotationwithname.md │ ├── dk.md │ ├── dl.md │ ├── dynamicalvariable.md │ ├── effectivehorizontalgridresolution.md │ ├── energyfluxfromnonlinearflux.md │ ├── enstrophyfluxfromf0.md │ ├── f.md │ ├── f0.md │ ├── fetchfromvariablecache.md │ ├── flowcomponent.md │ ├── flowcomponentnamemap.md │ ├── fm.md │ ├── fp.md │ ├── g.md │ ├── h_0.md │ ├── h_pm.md │ ├── hasmeanpressuredifference.md │ ├── horizontalmodes.md │ ├── index.md │ ├── indexfrommodenumber.md │ ├── inertialperiod.md │ ├── initfromnetcdffile.md │ ├── initializeprimaryflowcomponents.md │ ├── initwithrandomflow.md │ ├── initwithuveta.md │ ├── initwithuvrho.md │ ├── iomega.md │ ├── isbarotropic.md │ ├── isequal.md │ ├── ishydrostatic.md │ ├── isvalidconjugatemodenumber.md │ ├── isvalidmodenumber.md │ ├── isvalidprimarymodenumber.md │ ├── j.md │ ├── j_.md │ ├── k.md │ ├── k2.md │ ├── k_.md │ ├── kaxis.md │ ├── kh.md │ ├── kl.md │ ├── kljgrid.md │ ├── knowndynamicalvariables.md │ ├── kradial.md │ ├── l.md │ ├── l_.md │ ├── latitude.md │ ├── laxis.md │ ├── lr2.md │ ├── lx.md │ ├── ly.md │ ├── lz.md │ ├── maska0conj.md │ ├── maska0primary.md │ ├── maskamconj.md │ ├── maskamprimary.md │ ├── maskapconj.md │ ├── maskapprimary.md │ ├── modenumberfromindex.md │ ├── na0.md │ ├── nam.md │ ├── nap.md │ ├── nj.md │ ├── nkl.md │ ├── nonlinearflux.md │ ├── nonlinearfluxforflowcomponents.md │ ├── nonlinearfluxoperation.md │ ├── nonlinearfluxwithgradientmasks.md │ ├── nonlinearfluxwithmask.md │ ├── nx.md │ ├── ny.md │ ├── nz.md │ ├── omega.md │ ├── operationfordynamicalvariable.md │ ├── operationnamemap.md │ ├── operationvariablenamemap.md │ ├── operationwithname.md │ ├── pa0.md │ ├── performoperation.md │ ├── performoperationwithname.md │ ├── primaryflowcomponent.md │ ├── primaryflowcomponentnamemap.md │ ├── propertyannotationnamemap.md │ ├── propertyannotationwithname.md │ ├── qgpvfluxfromf0.md │ ├── removeall.md │ ├── removeoperation.md │ ├── removevariableannotations.md │ ├── rho0.md │ ├── rho_e.md │ ├── rho_total.md │ ├── shouldantialias.md │ ├── spatialmatrixsize.md │ ├── spectralmatrixsize.md │ ├── spectralvanishingviscosityfilter.md │ ├── spectralvariablewithresolution.md │ ├── ssh.md │ ├── ssu.md │ ├── ssv.md │ ├── statevariables.md │ ├── summarizedegreesoffreedom.md │ ├── summarizedynamicalvariables.md │ ├── summarizeenergycontent.md │ ├── summarizeflowcomponents.md │ ├── summarizemodeenergy.md │ ├── t.md │ ├── t0.md │ ├── timedependentvariablesnamemap.md │ ├── totalenergy.md │ ├── totalenergyofflowcomponent.md │ ├── totalenergyspatiallyintegrated.md │ ├── totalenstrophy.md │ ├── totalenstrophyspatiallyintegrated.md │ ├── totalhydrostaticenergy.md │ ├── transformfromspatialdomainwithfg.md │ ├── transformfromspatialdomainwithfio.md │ ├── transformfromspatialdomainwithfourier.md │ ├── transformfromspatialdomainwithgg.md │ ├── transformtoklaxes.md │ ├── transformtoradialwavenumber.md │ ├── transformtospatialdomainwithf.md │ ├── transformtospatialdomainwithfallderivatives.md │ ├── transformtospatialdomainwithfourier.md │ ├── transformtospatialdomainwithfourieratposition.md │ ├── transformtospatialdomainwithg.md │ ├── transformtospatialdomainwithgallderivatives.md │ ├── transformuvetatowavevortex.md │ ├── transformwavevortextouvweta.md │ ├── transformwithg_wg.md │ ├── ua0.md │ ├── uam.md │ ├── uap.md │ ├── uvmax.md │ ├── va0.md │ ├── vam.md │ ├── vap.md │ ├── variableannotationnamemap.md │ ├── variableannotationwithname.md │ ├── variablecache.md │ ├── variablenames.md │ ├── variables.md │ ├── variablesatposition.md │ ├── velocityfield.md │ ├── version.md │ ├── wam.md │ ├── wap.md │ ├── wavecoefficientsattimet.md │ ├── wavevortextransformfromfile.md │ ├── wavevortextransformwithdoubleresolution.md │ ├── wavevortextransformwithresolution.md │ ├── wmax.md │ ├── writetofile.md │ ├── wvbuffer.md │ ├── wvconjugateindex.md │ ├── wvtransform.md │ ├── x.md │ ├── x_.md │ ├── xyzgrid.md │ ├── y.md │ ├── y_.md │ ├── z.md │ ├── z_.md │ └── zeta_z.md ├── developers-guide ├── index.md ├── operations-and-variables.md ├── primary-flow-components.md ├── property-and-method-types.md └── style-guide.md ├── index.md ├── mathematical-introduction ├── index.md ├── introduction.md ├── orthogonality.md └── transformations.md └── users-guide ├── creating-new-state-variables.md ├── index.md ├── introduction.md ├── netcdf-output.md ├── nonlinear-flux-operations.md ├── reading-and-writing-to-file.md ├── using-the-wvtransform.md └── wavenumber-modes-and-indices.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.lfsconfig: -------------------------------------------------------------------------------- 1 | [lfs] 2 | fetchexclude = * 3 | -------------------------------------------------------------------------------- /GLOceanKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GLOceanKit/GLInternalModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/GLInternalModes.h -------------------------------------------------------------------------------- /GLOceanKit/GLInternalModes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/GLInternalModes.m -------------------------------------------------------------------------------- /GLOceanKit/GLInternalModesSpectral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/GLInternalModesSpectral.h -------------------------------------------------------------------------------- /GLOceanKit/GLInternalModesSpectral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/GLInternalModesSpectral.m -------------------------------------------------------------------------------- /GLOceanKit/GLInternalWaveInitialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/GLInternalWaveInitialization.h -------------------------------------------------------------------------------- /GLOceanKit/GLInternalWaveInitialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/GLInternalWaveInitialization.m -------------------------------------------------------------------------------- /GLOceanKit/GLOceanKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/GLOceanKit.h -------------------------------------------------------------------------------- /GLOceanKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/Info.plist -------------------------------------------------------------------------------- /GLOceanKit/Quasigeostrophy2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/Quasigeostrophy2D.h -------------------------------------------------------------------------------- /GLOceanKit/Quasigeostrophy2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKit/Quasigeostrophy2D.m -------------------------------------------------------------------------------- /GLOceanKitTests/GLOceanKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKitTests/GLOceanKitTests.m -------------------------------------------------------------------------------- /GLOceanKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/GLOceanKitTests/Info.plist -------------------------------------------------------------------------------- /Matlab/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/.gitattributes -------------------------------------------------------------------------------- /Matlab/.gitignore: -------------------------------------------------------------------------------- 1 | *.m~ 2 | *.asv 3 | -------------------------------------------------------------------------------- /Matlab/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/.vscode/settings.json -------------------------------------------------------------------------------- /Matlab/AdvectionDiffusionEstimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/AdvectionDiffusionEstimation/README.md -------------------------------------------------------------------------------- /Matlab/AdvectionDiffusionModels/Examples/tightfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/AdvectionDiffusionModels/Examples/tightfig.m -------------------------------------------------------------------------------- /Matlab/AdvectionDiffusionModels/KinematicModels/SimpleBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/AdvectionDiffusionModels/KinematicModels/SimpleBox.m -------------------------------------------------------------------------------- /Matlab/AdvectionDiffusionModels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/AdvectionDiffusionModels/README.md -------------------------------------------------------------------------------- /Matlab/AdvectionDiffusionModels/Tests/InPolygonTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/AdvectionDiffusionModels/Tests/InPolygonTest.m -------------------------------------------------------------------------------- /Matlab/AdvectionDiffusionModels/Tests/ReflectOffBoundary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/AdvectionDiffusionModels/Tests/ReflectOffBoundary.m -------------------------------------------------------------------------------- /Matlab/AdvectionDiffusionModels/Tests/ReflectOffCylinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/AdvectionDiffusionModels/Tests/ReflectOffCylinder.m -------------------------------------------------------------------------------- /Matlab/AdvectionDiffusionModels/Tests/doesIntersect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/AdvectionDiffusionModels/Tests/doesIntersect.m -------------------------------------------------------------------------------- /Matlab/Boussinesq2D/Boussinesq2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Boussinesq2D/Boussinesq2D.m -------------------------------------------------------------------------------- /Matlab/Boussinesq2D/Boussinesq2DConstantStratification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Boussinesq2D/Boussinesq2DConstantStratification.m -------------------------------------------------------------------------------- /Matlab/Boussinesq2D/InternalWaveExperiment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Boussinesq2D/InternalWaveExperiment.m -------------------------------------------------------------------------------- /Matlab/Boussinesq2D/Notes/Boussinesq2D notes.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Boussinesq2D/Notes/Boussinesq2D notes.aux -------------------------------------------------------------------------------- /Matlab/Boussinesq2D/Notes/Boussinesq2D notes.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Boussinesq2D/Notes/Boussinesq2D notes.log -------------------------------------------------------------------------------- /Matlab/Boussinesq2D/Notes/Boussinesq2D notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Boussinesq2D/Notes/Boussinesq2D notes.pdf -------------------------------------------------------------------------------- /Matlab/Boussinesq2D/Notes/Boussinesq2D notes.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Boussinesq2D/Notes/Boussinesq2D notes.synctex.gz -------------------------------------------------------------------------------- /Matlab/Boussinesq2D/Notes/Boussinesq2D notes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Boussinesq2D/Notes/Boussinesq2D notes.tex -------------------------------------------------------------------------------- /Matlab/Boussinesq2D/WaveWaveDecomposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Boussinesq2D/WaveWaveDecomposition.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/@CAAnnotatedClass/CAAnnotatedClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/@CAAnnotatedClass/CAAnnotatedClass.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/@CAAnnotatedClass/writeToFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/@CAAnnotatedClass/writeToFile.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/CADimensionProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/CADimensionProperty.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/CAFunctionProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/CAFunctionProperty.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/CAMethodAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/CAMethodAnnotation.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/CANumericProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/CANumericProperty.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/CAObjectProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/CAObjectProperty.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/CAPropertyAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/CAPropertyAnnotation.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/UnitTests/AnnotationTestClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/UnitTests/AnnotationTestClass.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/UnitTests/AnnotationTestClassB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/UnitTests/AnnotationTestClassB.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/UnitTests/TestReadWrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/UnitTests/TestReadWrite.m -------------------------------------------------------------------------------- /Matlab/ClassAnnotations/classRequiredPropertyNames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ClassAnnotations/classRequiredPropertyNames.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/CenterOfMass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/CenterOfMass.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/CreateBinEdgesForInitialSeparation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/CreateBinEdgesForInitialSeparation.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/DiffusivityFromZeroFrequency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/DiffusivityFromZeroFrequency.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/MeanSquareSeparation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/MeanSquareSeparation.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/PairwiseMeanSquareSeparation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/PairwiseMeanSquareSeparation.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/PairwiseRelativeDiffusivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/PairwiseRelativeDiffusivity.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/PairwiseRelativeDiffusivityFromSlope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/PairwiseRelativeDiffusivityFromSlope.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/PairwiseRelativeDiffusivityVsDistance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/PairwiseRelativeDiffusivityVsDistance.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/PairwiseRelativeDiffusivityWithZ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/PairwiseRelativeDiffusivityWithZ.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/PairwiseRelativeDispersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/PairwiseRelativeDispersion.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/ParticlePathInStrainVorticityField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/ParticlePathInStrainVorticityField.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/SecondMomentMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/SecondMomentMatrix.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/SingleParticleDiffusivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/SingleParticleDiffusivity.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/UnitTests/TestDiffusivityInStrainField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/UnitTests/TestDiffusivityInStrainField.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/UnitTests/TestDiffusivityWithRandomWalk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/UnitTests/TestDiffusivityWithRandomWalk.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/UnitTests/TestRandomWalkDiffusivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/UnitTests/TestRandomWalkDiffusivity.m -------------------------------------------------------------------------------- /Matlab/Diffusivity/UnitTests/histogramWithErrorbars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Diffusivity/UnitTests/histogramWithErrorbars.m -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/ClassHierarchy.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/ClassHierarchy.graffle -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/ClassHierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/ClassHierarchy.png -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/ExponentialSolutionSpeedTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/ExponentialSolutionSpeedTest.m -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/FreeSurfaceModeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/FreeSurfaceModeTest.m -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/HigherOrderSplines/bspline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/HigherOrderSplines/bspline.m -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/Notes on initialization.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/Notes on initialization.rtf -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/SQGModeFromDensityProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/SQGModeFromDensityProfile.m -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/SQGModeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/SQGModeTest.m -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/StretchedCoordinateTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/StretchedCoordinateTest.m -------------------------------------------------------------------------------- /Matlab/InternalModes/Extras/WKBModeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Extras/WKBModeTest.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModes.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModesAdaptiveSpectral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModesAdaptiveSpectral.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModesBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModesBase.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModesConstantStratification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModesConstantStratification.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModesDensitySpectral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModesDensitySpectral.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModesFiniteDifference.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModesFiniteDifference.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModesSpectral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModesSpectral.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModesWKB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModesWKB.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModesWKBHydrostatic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModesWKBHydrostatic.m -------------------------------------------------------------------------------- /Matlab/InternalModes/InternalModesWKBSpectral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/InternalModesWKBSpectral.m -------------------------------------------------------------------------------- /Matlab/InternalModes/LowerBoundary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/LowerBoundary.m -------------------------------------------------------------------------------- /Matlab/InternalModes/Normalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/Normalization.m -------------------------------------------------------------------------------- /Matlab/InternalModes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/README.md -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/BasicInitialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/BasicInitialization.m -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/CyprusSimulationParams.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/CyprusSimulationParams.mat -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/GaussQuadraturePoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/GaussQuadraturePoints.m -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/NormalizationRatioTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/NormalizationRatioTests.m -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/NormalizationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/NormalizationTests.m -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/PlotRealProfiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/PlotRealProfiles.m -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/SQGModeRelativeErrorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/SQGModeRelativeErrorTests.m -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/SampleLatmixProfiles.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/SampleLatmixProfiles.mat -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/ShowCyprusModes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/ShowCyprusModes.m -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/SpectralInitialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/SpectralInitialization.m -------------------------------------------------------------------------------- /Matlab/InternalModes/UnitTests/TestAdaptiveAlgorithm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UnitTests/TestAdaptiveAlgorithm.m -------------------------------------------------------------------------------- /Matlab/InternalModes/UpperBoundary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalModes/UpperBoundary.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/Examples/InternalWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/Examples/InternalWave.png -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/Examples/MakeInternalWaveFigure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/Examples/MakeInternalWaveFigure.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/Examples/SaveModelOutputToNetCDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/Examples/SaveModelOutputToNetCDF.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/FlowConstituent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/FlowConstituent.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/InternalWaveModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/InternalWaveModel.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/InternalWaveModelNetCDFTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/InternalWaveModelNetCDFTools.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/README.md -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/UnitTests/CheckWavenumberCutoff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/UnitTests/CheckWavenumberCutoff.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/UnitTests/ComputeErtelPV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/UnitTests/ComputeErtelPV.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/UnitTests/CustomSpectrumTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/UnitTests/CustomSpectrumTest.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/UnitTests/GMExponentialUnitTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/UnitTests/GMExponentialUnitTest.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/UnitTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/UnitTests/README.md -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/UnitTests/SpectralDerivativeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/UnitTests/SpectralDerivativeTests.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/UnitTests/TestEVPCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/UnitTests/TestEVPCache.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/UnitTests/WaveVortexFluxTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/UnitTests/WaveVortexFluxTest.m -------------------------------------------------------------------------------- /Matlab/InternalWaveModel/UnitTests/plot_energetics_IWVM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveModel/UnitTests/plot_energetics_IWVM.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/LoadFigureDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/LoadFigureDefaults.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/NonOrthogonality.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/NonOrthogonality.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/ShowGMSpectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/ShowGMSpectrum.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/ShowSSHSpectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/ShowSSHSpectrum.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/ShowSSHSpectrumRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/ShowSSHSpectrumRange.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/VarianceSumsScratch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/VarianceSumsScratch.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/VerticalVariances.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/VerticalVariances.pdf -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/VerticalVariancesWKB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/VerticalVariancesWKB.pdf -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/cmocean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/cmocean.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/Extras/tightfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/Extras/tightfig.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/GarrettMunkSpectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/GarrettMunkSpectrum.m -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/PrecomputedProfiles/constant.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/PrecomputedProfiles/constant.mat -------------------------------------------------------------------------------- /Matlab/InternalWaveSpectrum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/InternalWaveSpectrum/README.md -------------------------------------------------------------------------------- /Matlab/ModelDiagnostics/Examples/ComputePVonParticles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ModelDiagnostics/Examples/ComputePVonParticles.m -------------------------------------------------------------------------------- /Matlab/ModelDiagnostics/Examples/ShowSomeSpectra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ModelDiagnostics/Examples/ShowSomeSpectra.m -------------------------------------------------------------------------------- /Matlab/ModelDiagnostics/ModelDiagnostics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ModelDiagnostics/ModelDiagnostics.m -------------------------------------------------------------------------------- /Matlab/ModelDiagnostics/ModelDiagnosticsWintersModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/ModelDiagnostics/ModelDiagnosticsWintersModel.m -------------------------------------------------------------------------------- /Matlab/NetCDF/.gitignore: -------------------------------------------------------------------------------- 1 | *.nc 2 | -------------------------------------------------------------------------------- /Matlab/NetCDF/NetCDFComplexVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/NetCDF/NetCDFComplexVariable.m -------------------------------------------------------------------------------- /Matlab/NetCDF/NetCDFDimension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/NetCDF/NetCDFDimension.m -------------------------------------------------------------------------------- /Matlab/NetCDF/NetCDFFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/NetCDF/NetCDFFile.m -------------------------------------------------------------------------------- /Matlab/NetCDF/NetCDFGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/NetCDF/NetCDFGroup.m -------------------------------------------------------------------------------- /Matlab/NetCDF/NetCDFRealVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/NetCDF/NetCDFRealVariable.m -------------------------------------------------------------------------------- /Matlab/NetCDF/NetCDFVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/NetCDF/NetCDFVariable.m -------------------------------------------------------------------------------- /Matlab/NetCDF/TestAddFunctionHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/NetCDF/TestAddFunctionHandle.m -------------------------------------------------------------------------------- /Matlab/NetCDF/TestDuplicateFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/NetCDF/TestDuplicateFile.m -------------------------------------------------------------------------------- /Matlab/NetCDF/UnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/NetCDF/UnitTests.m -------------------------------------------------------------------------------- /Matlab/OceanBoundaryLayer/OBLModel_DampedSlab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/OceanBoundaryLayer/OBLModel_DampedSlab.m -------------------------------------------------------------------------------- /Matlab/OceanBoundaryLayer/OBLModel_InfiniteLayerConstantK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/OceanBoundaryLayer/OBLModel_InfiniteLayerConstantK.m -------------------------------------------------------------------------------- /Matlab/OceanBoundaryLayer/OBLModel_OneLayerConstantK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/OceanBoundaryLayer/OBLModel_OneLayerConstantK.m -------------------------------------------------------------------------------- /Matlab/OceanBoundaryLayer/OBLModel_OneLayerLinearK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/OceanBoundaryLayer/OBLModel_OneLayerLinearK.m -------------------------------------------------------------------------------- /Matlab/OceanBoundaryLayer/OS_PAPA_200706_D_TM_50N145W_10m.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/OceanBoundaryLayer/OS_PAPA_200706_D_TM_50N145W_10m.nc -------------------------------------------------------------------------------- /Matlab/OceanBoundaryLayer/PapaWindRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/OceanBoundaryLayer/PapaWindRecord.m -------------------------------------------------------------------------------- /Matlab/OceanBoundaryLayer/StressFromWindVector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/OceanBoundaryLayer/StressFromWindVector.m -------------------------------------------------------------------------------- /Matlab/Quasigeostrophy/CheckResolutionDoubling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Quasigeostrophy/CheckResolutionDoubling.m -------------------------------------------------------------------------------- /Matlab/Quasigeostrophy/EnergySpectrumFromSSH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Quasigeostrophy/EnergySpectrumFromSSH.m -------------------------------------------------------------------------------- /Matlab/Quasigeostrophy/ExtractDriftersToMatlabWithFields.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Quasigeostrophy/ExtractDriftersToMatlabWithFields.m -------------------------------------------------------------------------------- /Matlab/Quasigeostrophy/FieldsFromStreamFunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Quasigeostrophy/FieldsFromStreamFunction.m -------------------------------------------------------------------------------- /Matlab/Quasigeostrophy/FieldsFromTurbulenceFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Quasigeostrophy/FieldsFromTurbulenceFile.m -------------------------------------------------------------------------------- /Matlab/Quasigeostrophy/MakeMaternFits.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/Quasigeostrophy/MakeMaternFits.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/SaveIC_EarlyIWmodel.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/SaveIC_EarlyIWmodel.nc -------------------------------------------------------------------------------- /Matlab/StokesDrift/SaveIC_EarlyIWmodel_171120.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/SaveIC_EarlyIWmodel_171120.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/SaveIC_EarlyIWmodel_171205.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/SaveIC_EarlyIWmodel_171205.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/FlowSolveConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/FlowSolveConfig -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/Make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/Make.inc -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/README -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/bv_profile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/bv_profile.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/cat_slices.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/cat_slices.pl -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/concat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/concat.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/ebudget_0111.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/ebudget_0111.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/explicit_rhs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/explicit_rhs.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/io_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/io_params -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/io_params.bak2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/io_params.bak2 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/io_params256128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/io_params256128 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/problem_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/problem_params -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/sample_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/sample_image.png -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/split_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/split_data.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/test.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/input/view_slices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/input/view_slices.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/Make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/Make.inc -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/Makefile -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/allocate_memory.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/allocate_memory.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/apply_forcing.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/apply_forcing.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/data_modules.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/data_modules.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/deboor.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/deboor.f -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/decomposition2D.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/decomposition2D.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/deriv_toolbox.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/deriv_toolbox.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/differentiate.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/differentiate.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/eos.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/eos.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/explicit_rhs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/explicit_rhs.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/flow_solve.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/flow_solve.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/flow_solve_user.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/flow_solve_user.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/initialize.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/initialize.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/machine.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/machine.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/mpi_utils.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/mpi_utils.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/newton.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/newton.f -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/Make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/Make.inc -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/README -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/comm2D.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/comm2D.F -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/makefile -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/module.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/module.F -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/setup.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/setup.f -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/test1_2D.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/p3dfft/test1_2D.f -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/read_userdata.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/read_userdata.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/setup_derivs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/setup_derivs.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/setup_diffusion.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/setup_diffusion.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/setup_domain.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/setup_domain.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/test_driver.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/test_driver.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/transform_xy.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/transform_xy.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/codes_etc/src/write_results.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/codes_etc/src/write_results.f90 -------------------------------------------------------------------------------- /Matlab/StokesDrift/Scratch/problem_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/Scratch/problem_params -------------------------------------------------------------------------------- /Matlab/StokesDrift/ShowConstantStratificationStokesDrift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/ShowConstantStratificationStokesDrift.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/ShowStokesDrift.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/ShowStokesDrift.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/ShowStokesDriftFromGriddedModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/ShowStokesDriftFromGriddedModel.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/StokesSolutionScratch.mw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/StokesSolutionScratch.mw -------------------------------------------------------------------------------- /Matlab/StokesDrift/load_io_params.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/load_io_params.m -------------------------------------------------------------------------------- /Matlab/StokesDrift/load_problem_params.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/StokesDrift/load_problem_params.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/.gitignore: -------------------------------------------------------------------------------- 1 | *.nc 2 | *.mat 3 | -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVModel/WVModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVModel/WVModel.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVModel/modelFromFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVModel/modelFromFile.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/FMatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/FMatrix.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/FinvMatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/FinvMatrix.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/GMatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/GMatrix.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/GinvMatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/GinvMatrix.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/N2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/N2.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/WVStratification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/WVStratification.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/dLnN2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/dLnN2.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/diffZF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/diffZF.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/diffZG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/diffZG.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/rho_nm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/rho_nm.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVStratification/verticalModes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVStratification/verticalModes.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/WVTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/WVTransform.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/addFlowComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/addFlowComponent.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/addOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/addOperation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/addRandomFlow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/addRandomFlow.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/addToVariableCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/addToVariableCache.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/addUVEta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/addUVEta.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/defaultOperations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/defaultOperations.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/fetchFromVariableCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/fetchFromVariableCache.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/flowComponentNames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/flowComponentNames.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/flowComponentWithName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/flowComponentWithName.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/flowComponents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/flowComponents.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/initFromNetCDFFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/initFromNetCDFFile.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/initWithRandomFlow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/initWithRandomFlow.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/initWithUVEta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/initWithUVEta.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/initWithUVRho.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/initWithUVRho.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/nonlinearFluxWithMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/nonlinearFluxWithMask.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/operationWithName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/operationWithName.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/performOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/performOperation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/removeAll.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/removeAll.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/removeOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/removeOperation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/summarizeEnergyContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/summarizeEnergyContent.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/summarizeModeEnergy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/summarizeModeEnergy.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/variableWithName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/variableWithName.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/@WVTransform/writeToFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/@WVTransform/writeToFile.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Documentation/ClassHierarchy.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Documentation/ClassHierarchy.graffle -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Documentation/ClassHierarchy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Documentation/ClassHierarchy.pdf -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Documentation/README.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Documentation/WebsiteBuilder/Topic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Documentation/WebsiteBuilder/Topic.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Documentation/WebsiteDocumentation/CNAME: -------------------------------------------------------------------------------- 1 | wavevortexmodel.org -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/BetaEddyOne/BetaEddyOne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/BetaEddyOne/BetaEddyOne.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/BetaEddyOne/makefigs_stokes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/BetaEddyOne/makefigs_stokes.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/CyprusEddy/CyprusEddy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/CyprusEddy/CyprusEddy.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/CyprusEddy/ReadCyprusEddy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/CyprusEddy/ReadCyprusEddy.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/ForcedDissipativeQG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/ForcedDissipativeQG/README.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/ForcedDissipativeQG/SpinUp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/ForcedDissipativeQG/SpinUp.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/QGDipole/QGDipole.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/QGDipole/QGDipole.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/QGMonopole3D/MakeFigures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/QGMonopole3D/MakeFigures.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/QGMonopole3D/QGMonopole3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/QGMonopole3D/QGMonopole3D.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/QGMonopole3D/SpinUp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/QGMonopole3D/SpinUp.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Example/need-to-be-updated/SpinUp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Example/need-to-be-updated/SpinUp.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/FlowComponents/WVGeostrophicMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/FlowComponents/WVGeostrophicMethods.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/FlowComponents/geostrophicEnergy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/FlowComponents/geostrophicEnergy.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/FlowComponents/inertialEnergy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/FlowComponents/inertialEnergy.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/FlowComponents/mdaEnergy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/FlowComponents/mdaEnergy.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/FlowComponents/waveEnergy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/FlowComponents/waveEnergy.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVAdaptiveDamping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVAdaptiveDamping.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVAdaptiveDiffusivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVAdaptiveDiffusivity.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVAdaptiveViscosity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVAdaptiveViscosity.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVAntialiasing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVAntialiasing.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVBetaPlanePVAdvection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVBetaPlanePVAdvection.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVBottomFrictionLinear.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVBottomFrictionLinear.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVBottomFrictionQuadratic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVBottomFrictionQuadratic.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVFixedAmplitudeForcing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVFixedAmplitudeForcing.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVMeanFlowForcing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVMeanFlowForcing.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVNonlinearAdvection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVNonlinearAdvection.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVThermalDamping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVThermalDamping.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVVerticalDiffusivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVVerticalDiffusivity.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Forcing/WVVerticalScalarDiffusivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Forcing/WVVerticalScalarDiffusivity.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Integrators/ode45_cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Integrators/ode45_cell.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/ObservingSystems/WVCoefficients.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/ObservingSystems/WVCoefficients.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/ObservingSystems/WVEulerianFields.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/ObservingSystems/WVEulerianFields.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/ObservingSystems/WVMooring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/ObservingSystems/WVMooring.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/ObservingSystems/WVTracer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/ObservingSystems/WVTracer.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Operations/APEOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Operations/APEOperation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Operations/APVOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Operations/APVOperation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Operations/EtaTrueOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Operations/EtaTrueOperation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/Operations/SpatialForcingOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/Operations/SpatialForcingOperation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/README.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/IsSameSolutionAs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/IsSameSolutionAs.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/IsolatedUnitTestScratch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/IsolatedUnitTestScratch.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/CheckForBailey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/CheckForBailey.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/CheckHermitian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/CheckHermitian.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/FFTWTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/FFTWTests.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/IndexTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/IndexTests.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/ModelComparison.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/ModelComparison.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/NetCDFFileTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/NetCDFFileTests.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/ReportErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/ReportErrors.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/TimeLoop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/TimeLoop.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/TransformTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/TransformTests.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/MiscTests/test_IWM_WVM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/MiscTests/test_IWM_WVM.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/ProfileableSpeedTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/ProfileableSpeedTest.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/README.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/RunAllUnitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/RunAllUnitTests.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/TestDivergence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/TestDivergence.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/TestFourierTransformXY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/TestFourierTransformXY.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/TestGeostrophicMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/TestGeostrophicMethods.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/TestNetCDF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/TestNetCDF.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/TestNonlinearFlux.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/TestNonlinearFlux.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/TestRadialTransformation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/TestRadialTransformation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/UnitTests/TestRandomFlow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/UnitTests/TestRandomFlow.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVAnnotation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVArrayIntegrator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVArrayIntegrator.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVCoefficientMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVCoefficientMatrix.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVDimensionAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVDimensionAnnotation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVFlowComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVFlowComponent.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVForcing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVForcing.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVForcingType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVForcingType.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVModelOutputFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVModelOutputFile.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVModelOutputGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVModelOutputGroup.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVModelOutputGroupEvenlySpaced.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVModelOutputGroupEvenlySpaced.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVModelOutputGroupOld.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVModelOutputGroupOld.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVNonlinearFluxOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVNonlinearFluxOperation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVNonlinearFluxOperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVNonlinearFluxOperation.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVObservingSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVObservingSystem.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVOperation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVOperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVOperation.md -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVOrthogonalSolution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVOrthogonalSolution.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVPrimaryFlowComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVPrimaryFlowComponent.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVPropertyAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVPropertyAnnotation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVRotatingFPlane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVRotatingFPlane.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVTotalFlowComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVTotalFlowComponent.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/WVVariableAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/WVVariableAnnotation.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/garbage/spatialDimensionNames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/garbage/spatialDimensionNames.m -------------------------------------------------------------------------------- /Matlab/WaveVortexModel/garbage/spectralDimensionNames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WaveVortexModel/garbage/spectralDimensionNames.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Examples/CheckHyperviscosityBoundaries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Examples/CheckHyperviscosityBoundaries.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Examples/CheckHyperviscositySetting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Examples/CheckHyperviscositySetting.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Examples/ExtractParticlesToMatlab.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Examples/ExtractParticlesToMatlab.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Examples/PlotWaveVortexAutocorrelation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Examples/PlotWaveVortexAutocorrelation.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Examples/ReadOutputFilesTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Examples/ReadOutputFilesTest.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Examples/SaveMooringTimeSeries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Examples/SaveMooringTimeSeries.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Examples/SaveWaveVortexDecomposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Examples/SaveWaveVortexDecomposition.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Examples/ShowWaveVortexEnergyVsTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Examples/ShowWaveVortexEnergyVsTime.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Examples/TestWaveVortexDecomposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Examples/TestWaveVortexDecomposition.m -------------------------------------------------------------------------------- /Matlab/WintersModel/Notes/.gitignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.log 3 | *.synctex.gz 4 | -------------------------------------------------------------------------------- /Matlab/WintersModel/Notes/damping-in-the-winters-model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Notes/damping-in-the-winters-model.pdf -------------------------------------------------------------------------------- /Matlab/WintersModel/Notes/damping-in-the-winters-model.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/Notes/damping-in-the-winters-model.tex -------------------------------------------------------------------------------- /Matlab/WintersModel/WintersModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/Matlab/WintersModel/WintersModel.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | wavevortexmodel.org -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/head_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/_includes/head_custom.html -------------------------------------------------------------------------------- /docs/_sass/custom/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/_sass/custom/custom.scss -------------------------------------------------------------------------------- /docs/classes/flow-components/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/index.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvflowcomponent/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvflowcomponent/index.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvflowcomponent/maska0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvflowcomponent/maska0.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvflowcomponent/maskam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvflowcomponent/maskam.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvflowcomponent/maskap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvflowcomponent/maskap.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvflowcomponent/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvflowcomponent/name.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvflowcomponent/plus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvflowcomponent/plus.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvflowcomponent/shortname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvflowcomponent/shortname.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvflowcomponent/wvt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvflowcomponent/wvt.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvgeostrophiccomponent/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvgeostrophiccomponent/index.md -------------------------------------------------------------------------------- /docs/classes/flow-components/wvprimaryflowcomponent/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/flow-components/wvprimaryflowcomponent/index.md -------------------------------------------------------------------------------- /docs/classes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/index.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/addattribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/addattribute.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/adddimension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/adddimension.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/addmutabledimension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/addmutabledimension.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/addvariable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/addvariable.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/attributes.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/close.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/complexvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/complexvariables.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/complexvariablewithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/complexvariablewithname.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/concatenatevariablealongdimension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/concatenatevariablealongdimension.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/createnewfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/createnewfile.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/dimensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/dimensions.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/dimensionsfordimids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/dimensionsfordimids.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/dimensionwithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/dimensionwithname.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/dump.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/format.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemabasisfunctionkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemabasisfunctionkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemadomainlengthkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemadomainlengthkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemadomainminimumkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemadomainminimumkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemagridtypekey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemagridtypekey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemaiscomplexkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemaiscomplexkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemaisevenlysampledkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemaisevenlysampledkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemaisimaginarypartkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemaisimaginarypartkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemaisperidiockey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemaisperidiockey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemaisrealpartkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemaisrealpartkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemaisrowvectorkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemaisrowvectorkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemamutablekey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemamutablekey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemapropernamekey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemapropernamekey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemasampleintervalkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemasampleintervalkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemauniquevariableidkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemauniquevariableidkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemaunitskey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemaunitskey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/glnetcdfschemaversionkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/glnetcdfschemaversionkey.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/index.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/initcomplexvariable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/initcomplexvariable.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/initializefromexistingfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/initializefromexistingfile.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/initvariable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/initvariable.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/ncid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/ncid.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/netcdf3typefordata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/netcdf3typefordata.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/netcdffile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/netcdffile.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/netcdftypefordata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/netcdftypefordata.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/open.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/path.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/readvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/readvariables.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/setvariable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/setvariable.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/sync.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/typestringfortypeid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/typestringfortypeid.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/variables.md -------------------------------------------------------------------------------- /docs/classes/netcdffile/variablewithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/netcdffile/variablewithname.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/index.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/beta.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/betaa0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/betaa0.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/compute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/compute.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/damp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/damp.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/dlnn2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/dlnn2.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/index.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/isequal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/isequal.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/k_damp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/k_damp.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/k_no_damp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/k_no_damp.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/nu_xy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/nu_xy.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/nu_z.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/nu_z.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/r.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/spatialflux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/spatialflux.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/uv_damp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/uv_damp.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearflux/wvt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearflux/wvt.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/a0pv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/a0pv.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/alpha.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/beta.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/damp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/damp.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/index.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/k_damp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/k_damp.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/nu_xy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/nu_xy.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/pva0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/pva0.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/r.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/rva0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/rva0.md -------------------------------------------------------------------------------- /docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/wvt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/nonlinear-fluxes/wvnonlinearfluxqg/wvt.md -------------------------------------------------------------------------------- /docs/classes/operations-and-annotations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/operations-and-annotations/index.md -------------------------------------------------------------------------------- /docs/classes/operations-and-annotations/wvoperation/f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/operations-and-annotations/wvoperation/f.md -------------------------------------------------------------------------------- /docs/classes/transforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/index.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/diffzf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/diffzf.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/diffzg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/diffzg.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/dlnn2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/dlnn2.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/fmatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/fmatrix.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/gmatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/gmatrix.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/index.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/maxfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/maxfg.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/maxfw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/maxfw.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/n2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/n2.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformboussinesq/rho_nm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformboussinesq/rho_nm.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/diffzf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/diffzf.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/diffzg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/diffzg.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/dlnn2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/dlnn2.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/fmatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/fmatrix.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/gmatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/gmatrix.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/index.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/maxfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/maxfg.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/maxfw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/maxfw.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/n2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/n2.md -------------------------------------------------------------------------------- /docs/classes/transforms/wvtransformhydrostatic/rho_nm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/transforms/wvtransformhydrostatic/rho_nm.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/diffx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/diffx.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/diffy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/diffy.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/index.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/ishermitian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/ishermitian.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/k_dft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/k_dft.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/k_wv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/k_wv.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/kmode_dft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/kmode_dft.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/kmode_wv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/kmode_wv.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/kradial_wv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/kradial_wv.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/l_dft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/l_dft.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/l_wv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/l_wv.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/lmode_dft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/lmode_dft.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/lmode_wv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/lmode_wv.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/lx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/lx.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/ly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/ly.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/nk_dft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/nk_dft.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/nkl_wv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/nkl_wv.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/nl_dft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/nl_dft.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/nx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/nx.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/ny.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/ny.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/shouldantialias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/shouldantialias.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/x.md -------------------------------------------------------------------------------- /docs/classes/wvgeometrydoublyperiodic/y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvgeometrydoublyperiodic/y.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/addnetcdfoutputvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/addnetcdfoutputvariables.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/addparticles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/addparticles.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/addtracer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/addtracer.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/closenetcdffile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/closenetcdffile.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/createnetcdffileformodeloutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/createnetcdffileformodeloutput.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/didblowup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/didblowup.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/didinitializenetcdffile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/didinitializenetcdffile.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/didsetupintegrator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/didsetupintegrator.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/drifterpositions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/drifterpositions.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/finalintegrationtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/finalintegrationtime.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/floatpositions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/floatpositions.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/incrementswrittentofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/incrementswrittentofile.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/index.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/initialconditiononlyvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/initialconditiononlyvariables.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/initializeparticlestorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/initializeparticlestorage.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/initialoutputtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/initialoutputtime.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/initialtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/initialtime.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/integratetotime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/integratetotime.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/integrationinformtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/integrationinformtime.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/integrationlastinformmodeltime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/integrationlastinformmodeltime.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/integrationlastinformwalltime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/integrationlastinformwalltime.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/integrationstarttime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/integrationstarttime.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/integratortype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/integratortype.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/lineardynamics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/lineardynamics.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/modelfromfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/modelfromfile.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/ncfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/ncfile.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/netcdfoutputvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/netcdfoutputvariables.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/nonlinearfluxoperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/nonlinearfluxoperation.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/opennetcdffilefortimestepping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/opennetcdffilefortimestepping.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/outputinterval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/outputinterval.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/particle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/particle.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/particleindexwithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/particleindexwithname.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/particlepositions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/particlepositions.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/recordnetcdffilehistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/recordnetcdffilehistory.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/removenetcdfoutputvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/removenetcdfoutputvariables.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/setdrifterpositions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/setdrifterpositions.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/setfloatpositions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/setfloatpositions.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/setnetcdfoutputvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/setnetcdfoutputvariables.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/setupintegrator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/setupintegrator.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/shouldshowintegrationdiagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/shouldshowintegrationdiagnostics.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/showintegrationfinishdiagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/showintegrationfinishdiagnostics.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/showintegrationstartdiagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/showintegrationstartdiagnostics.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/showintegrationtimediagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/showintegrationtimediagnostics.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/t.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/t.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/timeoflastincrementwrittentofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/timeoflastincrementwrittentofile.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/timeseriesvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/timeseriesvariables.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/tracer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/tracer.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/tracerarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/tracerarray.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/tracerindexwithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/tracerindexwithname.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/updateparticletrackedfields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/updateparticletrackedfields.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/writeparticledataattimeindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/writeparticledataattimeindex.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/writetimesteptonetcdffile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/writetimesteptonetcdffile.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/wvmodel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/wvmodel.md -------------------------------------------------------------------------------- /docs/classes/wvmodel/wvt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvmodel/wvt.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/a0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/a0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/a0_qgpv_factor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/a0_qgpv_factor.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/a0_te_factor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/a0_te_factor.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/a0_tz_factor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/a0_tz_factor.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/a0n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/a0n.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/a0t.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/a0t.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/a0u.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/a0u.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/a0v.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/a0v.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/a0z.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/a0z.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/adddimensionannotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/adddimensionannotations.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/addflowcomponent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/addflowcomponent.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/addoperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/addoperation.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/addprimaryflowcomponent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/addprimaryflowcomponent.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/addpropertyannotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/addpropertyannotations.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/addrandomflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/addrandomflow.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/addtovariablecache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/addtovariablecache.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/adduveta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/adduveta.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/addvariableannotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/addvariableannotations.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/am.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/am.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/amn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/amn.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/amt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/amt.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/amu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/amu.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/amv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/amv.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/ap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/ap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/apm_te_factor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/apm_te_factor.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/apmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/apmd.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/apmn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/apmn.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/apn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/apn.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/apt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/apt.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/apu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/apu.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/apv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/apv.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/clearvariablecache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/clearvariablecache.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/conjugatedimension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/conjugatedimension.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/dftbuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/dftbuffer.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/dftconjugateindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/dftconjugateindex.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/dftprimaryindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/dftprimaryindex.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/diffx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/diffx.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/diffy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/diffy.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/diffzf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/diffzf.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/diffzg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/diffzg.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/dimensionannotationnamemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/dimensionannotationnamemap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/dimensionannotationwithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/dimensionannotationwithname.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/dk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/dk.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/dl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/dl.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/dynamicalvariable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/dynamicalvariable.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/energyfluxfromnonlinearflux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/energyfluxfromnonlinearflux.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/enstrophyfluxfromf0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/enstrophyfluxfromf0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/f.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/f0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/f0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/fetchfromvariablecache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/fetchfromvariablecache.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/flowcomponent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/flowcomponent.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/flowcomponentnamemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/flowcomponentnamemap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/fm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/fm.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/fp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/fp.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/g.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/h_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/h_0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/h_pm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/h_pm.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/hasmeanpressuredifference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/hasmeanpressuredifference.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/horizontalmodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/horizontalmodes.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/index.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/indexfrommodenumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/indexfrommodenumber.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/inertialperiod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/inertialperiod.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/initfromnetcdffile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/initfromnetcdffile.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/initwithrandomflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/initwithrandomflow.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/initwithuveta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/initwithuveta.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/initwithuvrho.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/initwithuvrho.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/iomega.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/iomega.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/isbarotropic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/isbarotropic.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/isequal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/isequal.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/ishydrostatic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/ishydrostatic.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/isvalidconjugatemodenumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/isvalidconjugatemodenumber.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/isvalidmodenumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/isvalidmodenumber.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/isvalidprimarymodenumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/isvalidprimarymodenumber.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/j.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/j.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/j_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/j_.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/k.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/k2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/k2.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/k_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/k_.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/kaxis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/kaxis.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/kh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/kh.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/kl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/kl.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/kljgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/kljgrid.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/knowndynamicalvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/knowndynamicalvariables.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/kradial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/kradial.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/l.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/l.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/l_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/l_.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/latitude.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/latitude.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/laxis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/laxis.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/lr2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/lr2.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/lx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/lx.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/ly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/ly.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/lz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/lz.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/maska0conj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/maska0conj.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/maska0primary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/maska0primary.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/maskamconj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/maskamconj.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/maskamprimary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/maskamprimary.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/maskapconj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/maskapconj.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/maskapprimary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/maskapprimary.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/modenumberfromindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/modenumberfromindex.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/na0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/na0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/nam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/nam.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/nap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/nap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/nj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/nj.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/nkl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/nkl.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/nonlinearflux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/nonlinearflux.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/nonlinearfluxoperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/nonlinearfluxoperation.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/nonlinearfluxwithmask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/nonlinearfluxwithmask.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/nx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/nx.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/ny.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/ny.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/nz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/nz.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/omega.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/omega.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/operationfordynamicalvariable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/operationfordynamicalvariable.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/operationnamemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/operationnamemap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/operationvariablenamemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/operationvariablenamemap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/operationwithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/operationwithname.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/pa0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/pa0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/performoperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/performoperation.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/performoperationwithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/performoperationwithname.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/primaryflowcomponent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/primaryflowcomponent.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/primaryflowcomponentnamemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/primaryflowcomponentnamemap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/propertyannotationnamemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/propertyannotationnamemap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/propertyannotationwithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/propertyannotationwithname.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/qgpvfluxfromf0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/qgpvfluxfromf0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/removeall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/removeall.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/removeoperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/removeoperation.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/removevariableannotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/removevariableannotations.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/rho0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/rho0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/rho_e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/rho_e.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/rho_total.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/rho_total.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/shouldantialias.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/shouldantialias.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/spatialmatrixsize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/spatialmatrixsize.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/spectralmatrixsize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/spectralmatrixsize.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/ssh.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/ssu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/ssu.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/ssv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/ssv.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/statevariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/statevariables.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/summarizedegreesoffreedom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/summarizedegreesoffreedom.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/summarizedynamicalvariables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/summarizedynamicalvariables.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/summarizeenergycontent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/summarizeenergycontent.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/summarizeflowcomponents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/summarizeflowcomponents.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/summarizemodeenergy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/summarizemodeenergy.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/t.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/t.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/t0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/t0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/timedependentvariablesnamemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/timedependentvariablesnamemap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/totalenergy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/totalenergy.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/totalenergyofflowcomponent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/totalenergyofflowcomponent.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/totalenstrophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/totalenstrophy.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/totalhydrostaticenergy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/totalhydrostaticenergy.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/transformtoklaxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/transformtoklaxes.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/transformtoradialwavenumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/transformtoradialwavenumber.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/transformtospatialdomainwithf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/transformtospatialdomainwithf.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/transformtospatialdomainwithg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/transformtospatialdomainwithg.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/transformuvetatowavevortex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/transformuvetatowavevortex.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/transformwavevortextouvweta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/transformwavevortextouvweta.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/transformwithg_wg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/transformwithg_wg.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/ua0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/ua0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/uam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/uam.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/uap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/uap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/uvmax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/uvmax.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/va0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/va0.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/vam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/vam.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/vap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/vap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/variableannotationnamemap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/variableannotationnamemap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/variableannotationwithname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/variableannotationwithname.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/variablecache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/variablecache.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/variablenames.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/variablenames.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/variables.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/variablesatposition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/variablesatposition.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/velocityfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/velocityfield.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/version.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/wam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/wam.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/wap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/wap.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/wavecoefficientsattimet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/wavecoefficientsattimet.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/wavevortextransformfromfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/wavevortextransformfromfile.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/wmax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/wmax.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/writetofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/writetofile.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/wvbuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/wvbuffer.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/wvconjugateindex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/wvconjugateindex.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/wvtransform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/wvtransform.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/x.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/x_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/x_.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/xyzgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/xyzgrid.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/y.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/y_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/y_.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/z.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/z.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/z_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/z_.md -------------------------------------------------------------------------------- /docs/classes/wvtransform/zeta_z.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/classes/wvtransform/zeta_z.md -------------------------------------------------------------------------------- /docs/developers-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/developers-guide/index.md -------------------------------------------------------------------------------- /docs/developers-guide/operations-and-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/developers-guide/operations-and-variables.md -------------------------------------------------------------------------------- /docs/developers-guide/primary-flow-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/developers-guide/primary-flow-components.md -------------------------------------------------------------------------------- /docs/developers-guide/property-and-method-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/developers-guide/property-and-method-types.md -------------------------------------------------------------------------------- /docs/developers-guide/style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/developers-guide/style-guide.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/mathematical-introduction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/mathematical-introduction/index.md -------------------------------------------------------------------------------- /docs/mathematical-introduction/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/mathematical-introduction/introduction.md -------------------------------------------------------------------------------- /docs/mathematical-introduction/orthogonality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/mathematical-introduction/orthogonality.md -------------------------------------------------------------------------------- /docs/mathematical-introduction/transformations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/mathematical-introduction/transformations.md -------------------------------------------------------------------------------- /docs/users-guide/creating-new-state-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/users-guide/creating-new-state-variables.md -------------------------------------------------------------------------------- /docs/users-guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/users-guide/index.md -------------------------------------------------------------------------------- /docs/users-guide/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/users-guide/introduction.md -------------------------------------------------------------------------------- /docs/users-guide/netcdf-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/users-guide/netcdf-output.md -------------------------------------------------------------------------------- /docs/users-guide/nonlinear-flux-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/users-guide/nonlinear-flux-operations.md -------------------------------------------------------------------------------- /docs/users-guide/reading-and-writing-to-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/users-guide/reading-and-writing-to-file.md -------------------------------------------------------------------------------- /docs/users-guide/using-the-wvtransform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/users-guide/using-the-wvtransform.md -------------------------------------------------------------------------------- /docs/users-guide/wavenumber-modes-and-indices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Energy-Pathways-Group/GLOceanKit/HEAD/docs/users-guide/wavenumber-modes-and-indices.md --------------------------------------------------------------------------------