You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
@LHRaceIng and I are imporivng on the current class structure
classDiagram class Computation { } %%%%%%%%% %% Solver class PressureSolver { +void solve() -void setBoundaryValues() } class GaussSeidel { } class SOR { } class RedBlack { } %%%%%%%%%%%%%%%%% %% Discretization class Discretization{ } class DonorCell{ } class CentralDifferences{ } class StaggeredGrid{ } class FieldVariable{ } class Array2D{ } %%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Boundary and Open Surface class Boundary{ } %%%%%%%% %% Writer class OutputWriter{ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%5 %% Connections Computation *-- PressureSolver Computation *-- OutputWriter Computation *-- Discretization PressureSolver <|-- GaussSeidel PressureSolver <|-- SOR PressureSolver <|-- RedBlack %% Discretization Discretization <|-- CentralDifferences Discretization <|-- DonorCell StaggeredGrid <|-- Discretization StaggeredGrid "1" -- "6" FieldVariable Array2D <|-- FieldVariable Discretization *-- Boundary ```Beta Was this translation helpful? Give feedback.
All reactions