-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
I'm working on an example that modifies the provided octagonal domain example. Here, I simply change the boundary mask to cut out the lower left corner of the domain. With all other parameters maintained, this introduces an asymmetry to the problem
# cut out lower left corner
mask = torch.ones(nx, ny)
for i in range(nx//4):
for j in range(ny//4):
mask[i,j] = 0.
The solution develops positive vorticity completely around the domain and eventually blows up around year 23.
I'm open to any suggestions about what could be potentially going wrong here.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
