Skip to content

Commit

Permalink
fixed some minor bugs.
Browse files Browse the repository at this point in the history
fixed bugs in importing MODFLOW 6 models.
Worked on importing UZT observations from MODFLOW 6 models.
  • Loading branch information
rbwinst-usgs committed May 13, 2024
1 parent cc94dd9 commit ad74090
Show file tree
Hide file tree
Showing 11 changed files with 306 additions and 137 deletions.
4 changes: 2 additions & 2 deletions MF6InputReader/Mf6.UztFileReaderUnit.pas
Original file line number Diff line number Diff line change
Expand Up @@ -584,12 +584,12 @@ function TUzt.GetPeriodCount: Integer;

function TUzt.GetTimeSeries(Index: Integer): TPackage;
begin
result := FObservationsPackages[Index]
result := FTimeSeriesPackages[Index]
end;

function TUzt.GetTimeSeriesCount: Integer;
begin
result := FObservationsPackages.Count
result := FTimeSeriesPackages.Count
end;

procedure TUzt.Read(Stream: TStreamReader; Unhandled: TStreamWriter; const NPER: Integer);
Expand Down
4 changes: 3 additions & 1 deletion ModelMuse/ModelMuse.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<FrameworkType>VCL</FrameworkType>
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
<ProjectVersion>19.5</ProjectVersion>
<Platform Condition="'$(Platform)'==''">Win32</Platform>
<Platform Condition="'$(Platform)'==''">Win64</Platform>
<TargetedPlatforms>3</TargetedPlatforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
Expand Down Expand Up @@ -106,6 +106,8 @@
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
<AppDPIAwarenessMode>none</AppDPIAwarenessMode>
<VerInfo_Build>10</VerInfo_Build>
<VerInfo_Keys>FileVersion=5.2.0.10;ProductVersion=5.2.0.10</VerInfo_Keys>
</PropertyGroup>
<PropertyGroup Condition="'$(Base_Win64)'!=''">
<DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
Expand Down
Loading

0 comments on commit ad74090

Please sign in to comment.