Skip to content

Commit

Permalink
Change run to variational for aerosol analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
CoryMartin-NOAA committed Apr 17, 2024
1 parent c679d94 commit 8766c0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# exglobal_aero_analysis_run.py
# exglobal_aero_analysis_variational.py
# This script creates an AerosolAnalysis object
# and runs the execute method
# and runs the variational method
# which executes the global aerosol variational analysis
import os

Expand All @@ -19,4 +19,4 @@

# Instantiate the aerosol analysis task
AeroAnl = AerosolAnalysis(config)
AeroAnl.execute()
AeroAnl.variational()
2 changes: 1 addition & 1 deletion ush/python/pygfs/task/aero_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def initialize(self: Analysis) -> None:
FileHandler({'mkdir': newdirs}).sync()

@logit(logger)
def execute(self: Analysis) -> None:
def variational(self: Analysis) -> None:

chdir(self.task_config.DATA)

Expand Down

0 comments on commit 8766c0d

Please sign in to comment.