Skip to content
View GregTJ's full-sized avatar
💻
💻
  • Montana
Block or Report

Block or report GregTJ

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. stable-fluids stable-fluids Public

    A minimal Stable Fluids inspired fluid solver with Python and NumPy.

    Python 191 26

  2. softbody-dynamics softbody-dynamics Public

    A 2D softbody dynamics simulation with p5.js

    JavaScript 27 3

  3. Naïve Walk On Spheres implementation... Naïve Walk On Spheres implementation for the Laplace equation on a disk with sinusoidal boundary values.
    1
    import numpy as np
    2
    from matplotlib import pyplot as plt
    3
    
                  
    4
    
                  
    5
    samples = 64
  4. Levi-Civita symbol in n-dimensions. Levi-Civita symbol in n-dimensions.
    1
    import sparse
    2
    from typing import Tuple, Generator
    3
    
                  
    4
    
                  
    5
    def sjt_permutations(n: int) -> Generator[Tuple[int], None, None]: