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

3-Tensor Operations and Constructors #415

Merged
merged 17 commits into from
Oct 14, 2020
Merged

3-Tensor Operations and Constructors #415

merged 17 commits into from
Oct 14, 2020

Commits on Oct 7, 2020

  1. 3-tensor contractions with 2-tensor and 1-tensor

    Added functionality to compute
    ```
    a_ij = b_kij*c_k
    a_i = b_ijk*c_jk
    ```
    zjwegert authored Oct 7, 2020
    Configuration menu
    Copy the full SHA
    739df9c View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2020

  1. Fixed 3-tensor single contraction & Added testing

    Omega-xyZac authored and Omega-xyZac committed Oct 8, 2020
    Configuration menu
    Copy the full SHA
    093e637 View commit details
    Browse the repository at this point in the history
  2. bug fix

    Forgot to switch inner and outer for loop
    Omega-xyZac authored and Omega-xyZac committed Oct 8, 2020
    Configuration menu
    Copy the full SHA
    3785310 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2020

  1. Added double contractions w/ products

    - This new functionality calculates `a_ijpm = b_ijkl*c_jkpm` and also provides testing.
    - I have re-enabled use of `:` operator since this is the most suitable.
    Omega-xyZac authored and Omega-xyZac committed Oct 9, 2020
    Configuration menu
    Copy the full SHA
    0499f67 View commit details
    Browse the repository at this point in the history
  2. Changed : to

    - Also changed comment to correctly reflect computation
    Omega-xyZac authored and Omega-xyZac committed Oct 9, 2020
    Configuration menu
    Copy the full SHA
    36ae454 View commit details
    Browse the repository at this point in the history
  3. bug fix

    Omega-xyZac authored and Omega-xyZac committed Oct 9, 2020
    Configuration menu
    Copy the full SHA
    4136684 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2020

  1. Added further contractions & changed notation

    Added
    ```
    # a_ilm = b_ijk*c_jklm
    # a_ilm = b_ij*c_jlm
    # a_il = b_ijk*c_jkl
    # a_il = b_ij*c_jl
    ```
    Implemented notation per S. Badia:
    ```
    ⋅¹,⋅²,⋅³,⋅⁴,... # n-contractions
    ⋅¹ == ⋅
    ⋅² == ⊡
    ```
    Omega-xyZac authored and Omega-xyZac committed Oct 10, 2020
    Configuration menu
    Copy the full SHA
    3791058 View commit details
    Browse the repository at this point in the history
  2. Bug fix

    Remove ⊡ from op
    Omega-xyZac authored and Omega-xyZac committed Oct 10, 2020
    Configuration menu
    Copy the full SHA
    0ea786a View commit details
    Browse the repository at this point in the history
  3. Update Operations.jl

    Omega-xyZac authored and Omega-xyZac committed Oct 10, 2020
    Configuration menu
    Copy the full SHA
    f704056 View commit details
    Browse the repository at this point in the history
  4. bug fix

    Removed `⋅¹` from line 598. Changed `\odot` to `\cdot\^2` in testing for double contraction (L487).
    Omega-xyZac authored and Omega-xyZac committed Oct 10, 2020
    Configuration menu
    Copy the full SHA
    01a4519 View commit details
    Browse the repository at this point in the history
  5. Update Operations.jl

    santiagobadia authored Oct 10, 2020
    Configuration menu
    Copy the full SHA
    0d5e64c View commit details
    Browse the repository at this point in the history
  6. Update Operations.jl

    santiagobadia authored Oct 10, 2020
    Configuration menu
    Copy the full SHA
    6facb47 View commit details
    Browse the repository at this point in the history
  7. Removed duplicate

    Omega-xyZac authored and Omega-xyZac committed Oct 10, 2020
    Configuration menu
    Copy the full SHA
    355179d View commit details
    Browse the repository at this point in the history
  8. Removed duplicate

    Omega-xyZac authored and Omega-xyZac committed Oct 10, 2020
    Configuration menu
    Copy the full SHA
    7a09a51 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2020

  1. Added zero method

    zjwegert authored Oct 12, 2020
    Configuration menu
    Copy the full SHA
    83ca4e4 View commit details
    Browse the repository at this point in the history
  2. zero method testing

    Omega-xyZac authored and Omega-xyZac committed Oct 12, 2020
    Configuration menu
    Copy the full SHA
    f1c1d3a View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2020

  1. Generalised double contraction

    - Added generalised contraction.
    - Removed ⊡.
    Omega-xyZac authored and Omega-xyZac committed Oct 13, 2020
    Configuration menu
    Copy the full SHA
    45ab2b3 View commit details
    Browse the repository at this point in the history