Developpment of a CFD solver from scratch in C++ for personal practise
Stars
0
Forks
0
Watchers
0
Open Issues
0
Overall repository health assessment
No package.json found
This might not be a Node.js project
No contributors data available
Midified the headers and class definition to avoid circular dependencies
5d8c633View on GitHubAdded 2 methods to compute the divergence of the VectorField either to return the whole divergence field or just at a requested location
7037348View on GitHubUpdated the computation of laplacian of individual components of a VectorField using the scalar method previously defined
a258166View on GitHubAdded methods for the scalar 2D field to compute gradient and laplacian
83ff85cView on GitHubCreated the velocity projection function. Placed all the steps (diffusion, Poisson and projection) in a temporal loop
ae1f567View on GitHubAdded a function to solve the Poisson equation for the Pressure
41c1a8aView on GitHubAdded the diffusion of the second component which was forgotten
1a5f453View on GitHubAdded the printing of the index when reaching out of bound state for debugging
7f3d1f2View on GitHubReplaced the = operator for VectorField2D to return references, supposed to be better for efficiency
417ce56View on GitHubAdded an advance_diffusion function, as well as the needed calculation of the laplacian of u and v in a vector field
c965268View on GitHubFixed the out of bound checking in get_index to include a missing value
f6faab9View on GitHubAdded a VectorField2D method to impose lid driven boundary conditions. Not very modular so shoud be changed in the future.
d08017dView on GitHubSimplified the constructor to take into account a default initial value
a509addView on GitHub