-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from chrishavlin/low_hanging
Various small fixes and improvements
- Loading branch information
Showing
26 changed files
with
326 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,42 @@ | ||
# v1.0.1 | ||
|
||
Bug fix release. | ||
|
||
## bug fixes | ||
|
||
- rename `Project/bayesian_fitting/run.m` to `run_bayes.m` to avoid name conflict. | ||
|
||
# v1.0.0 | ||
|
||
This is the first series-1 release! It is backwards compatible. | ||
|
||
## new features | ||
## new features | ||
|
||
- units metadata: `VBR.in.SV` as well as all output methods now contain a units structure that contains the units for each field. You can also call `SV_input_units()` to get a structure that lists the expected units for each `VBR.in.SV` field. | ||
- version tracking: after calling `VBR_spine`, all `VBR` structures will have a field, `VBR.version_used` with info on the VBR version that you used. | ||
- a new function for calculating density as a function of pressure, using an interpolation of experimental measurements on F90 San Carlos olivine, `san_carlos_density_from_pressure`, following Abramson et al., JGR, 1997. Useful for | ||
- a new function for calculating density as a function of pressure, using an interpolation of experimental measurements on F90 San Carlos olivine, `san_carlos_density_from_pressure`, following Abramson et al., JGR, 1997. Useful for | ||
quickly calculating olivine density for a given pressure. | ||
|
||
## bug fixes | ||
|
||
(add bug fixes) | ||
|
||
## changes | ||
## changes | ||
|
||
- some of the functions related to non-seismic material properties used in the forward | ||
models directory have been moved and renamed. No change in usage, but it is now easier | ||
- some of the functions related to non-seismic material properties used in the forward | ||
models directory have been moved and renamed. No change in usage, but it is now easier | ||
to use those functions in a piecemeal fashion if desired. See functions in the `density` | ||
and `thermal_properties` subdirectories within `vbr/vbrCore/fucntions/` for available | ||
functions. | ||
and `thermal_properties` subdirectories within `vbr/vbrCore/fucntions/` for available | ||
functions. | ||
|
||
# v0.99.4 | ||
# v0.99.4 | ||
|
||
maintenance updates (testing, github CI, documentation) | ||
|
||
## new features | ||
## new features | ||
|
||
- `vbr_version()` function, returns the version of the VBRc that you are using | ||
|
||
# v <= 0.99.3 | ||
|
||
release_history.md covers v>0.99.3. | ||
release_history.md covers v>0.99.3. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
# v1.0.1 | ||
|
||
Bug fix release. | ||
|
||
## bug fixes | ||
|
||
- rename `Project/bayesian_fitting/run.m` to `run_bayes.m` to avoid name conflict. | ||
# v1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
function is_octave_bool = is_octave() | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% is_octave() | ||
% | ||
% returns 1 if running in Octave, 0 if running in MATLAB | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
is_octave_bool = exist('OCTAVE_VERSION', 'builtin') ~= 0; | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.