Skip to content

Commit

Permalink
updating default MC weights
Browse files Browse the repository at this point in the history
  • Loading branch information
mansakrishna23 committed May 9, 2024
1 parent f4e1042 commit 2235dc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pinnicle/physics/continuity.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ def set_default(self):
self.output = ['u', 'v', 'a', 'H']
self.output_lb = [-1.0e4/self.yts, -1.0e4/self.yts, -5.0/self.yts, 10.0]
self.output_ub = [ 1.0e4/self.yts, 1.0e4/self.yts, 5/self.yts, 2500.0]
self.data_weights = [1.0e-3*self.yts, 1.0e-3*self.yts, 1.0e4*self.yts, 1.0e-6]
self.data_weights = [1.0e-8*self.yts**2, 1.0e-8*self.yts**2, 1.0*self.yts**2, 1.0e-6]
self.residuals = ["fMC"]
self.pde_weights = [1.0e6]
self.pde_weights = [1.0e8]

# scalar variables: name:value
self.scalar_variables = {
Expand Down

0 comments on commit 2235dc4

Please sign in to comment.