Skip to content

Commit

Permalink
Merge remote-tracking branch 'lxmota/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
lxmota committed Jan 28, 2025
2 parents 4f0c810 + 277b0fe commit fdac8d6
Show file tree
Hide file tree
Showing 6 changed files with 432 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches:
- main # Run on pushes to the main branch
pull_request: # Run on pull requests
workflow_dispatch:
schedule:
- cron: '0 8 * * *' # Midnight PST (8:00 UTC)

Expand All @@ -13,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest] # Platforms to test
julia-version: ["1.10", "1.11"] # Julia versions to test
julia-version: ["1.11"] # Julia versions to test
runs-on: ${{ matrix.os }}

steps:
Expand Down
24 changes: 24 additions & 0 deletions examples/ems/cloud/cube.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
geometry:
type: cube
side length: 1.0
potential:
# type: repulsive
# k: 1.0
# cutoff: 10.0
type: polynomial
k: 1.0
h: 0.3
m: 4
cutoff: 10.0
number points: 1000
solver:
type: steepest descent
step length: 1.0
maximum iterations: 1000
absolute tolerance: 1.0e-06
relative tolerance: 1.0e-08
maximum line search iterations: 100
backtrack factor: 0.5
decrease factor: 1.0e-04
output file root: cube
output interval: 10
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit fdac8d6

Please sign in to comment.