Search found 3 matches

by bohbang
Wed Feb 13, 2008 7:14 pm
Forum: ROMS Ecosystem
Topic: Light issues when Biology is defined
Replies: 3
Views: 5876

"light absorption by P doesn't feedback to the water co

It's mostly in a visible band when P absorbs light. For the T's sake, we care mostly non-visible band, most likely IR band, which is far beyond 700 nm in wave spectrum. So, it may not much matter for heating-up of water temperature with or without a feedback of P on light extinction (of visible band ...
by bohbang
Wed Sep 13, 2006 5:03 pm
Forum: ROMS Problems
Topic: bug in get_state.F
Replies: 1
Views: 2645

bug in get_state.F

I also looked in the file corrections-2.2.tar.
The one stored in corrections-2.2.tar still keeps the wrong code. So does the web code browser! This put me in some confusion for a while until I figure out the role of integer variables in ROMS 2.2. Critters will never exist and grow when you restart ...
by bohbang
Tue Sep 12, 2006 11:56 pm
Forum: ROMS Problems
Topic: bug in get_state.F
Replies: 1
Views: 2645

bug in get_state.F

# if defined BIOLOGY && !defined ANA_BIOLOGY
DO itrc=1,NBT
get_var(idbio(itrc))=.TRUE.
END DO
# endif
...
should be

# if defined BIOLOGY && !defined ANA_BIOLOGY
DO itrc=1,NBT
get_var(idTvar(idbio(itrc)))=.TRUE.
END DO
# endif

right ?