Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Releasing 0.2.1 #22

Merged
merged 8 commits into from
Oct 10, 2023
Merged

Releasing 0.2.1 #22

merged 8 commits into from
Oct 10, 2023

Commits on Oct 7, 2023

  1. Quick bug fix

    project_prop_on_subset was not working properly when the property
    values are not tagged as values but some other name. Added a new
    argument for that.
    
    Also notices that interp(prop_values::Vector{T}, space::OMAS.edge_profiles__grid_ggd___space)
    had a typo in return call and would have failed.
    anchal-physics committed Oct 7, 2023
    Configuration menu
    Copy the full SHA
    0b5cd54 View commit details
    Browse the repository at this point in the history
  2. Add option of using which interp method

    In project_prop_on_subset!, when the dimensions of to_subset is
    lower, then an interpolation is required. This commit adds an
    option to choose between thin plate spline (:thin_plate_spline)
    (slower, more accurate) and using KD trees (:kd_tree)
    (faster, less accurate).
    anchal-physics committed Oct 7, 2023
    Configuration menu
    Copy the full SHA
    eb5df0d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a0609cf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8b13a55 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. Configuration menu
    Copy the full SHA
    2301913 View commit details
    Browse the repository at this point in the history
  2. Added option for reusing TPS matrices

    While doing thin plate spline method for interpolation, it is beneficial
    to reuse the matrix calculations done if the same grid susbset is
    being used. So just like sharing a KDTree object, we can share the
    TPS_mats which is a tuple of matrices and vectors required for this
    spline function.
    anchal-physics committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    7f922a6 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. Merge pull request #21 from ProjectTorreyPines/interp

    Added option for reusing TPS matrices
    anchal-physics authored Oct 10, 2023
    Configuration menu
    Copy the full SHA
    b53b406 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    75d2cce View commit details
    Browse the repository at this point in the history