Skip to content
Snippets Groups Projects
Commit 01ab797a authored by Matthias Schmiddunser's avatar Matthias Schmiddunser
Browse files

fixed typo

parent d49d1193
No related branches found
No related tags found
No related merge requests found
......@@ -275,7 +275,7 @@ load: if (params%irestart > 0 .AND. params%irestart>params%tr_activation) then
read(19) trcl%yhist(:,i)
read(19) trcl%zhist(:,i)
! correct for vertical exaggeration
trcl%zhist(i)=trcl%zhist(i)/params%vex
trcl%zhist(:,i)=trcl%zhist(:,i)/params%vex
read(19) trcl%temphist(:,i)
read(19) trcl%presshist(:,i)
end do
......@@ -292,7 +292,7 @@ load: if (params%irestart > 0 .AND. params%irestart>params%tr_activation) then
read(19) surfd%yhist(:,i)
read(19) surfd%zhist(:,i)
! correct for vertical exaggeration
surfd%zhist(i)=surfd%zhist(i)/params%vex
surfd%zhist(:,i)=surfd%zhist(:,i)/params%vex
read(19) surfd%temphist(:,i)
read(19) surfd%presshist(:,i)
end do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment