⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 initialize_soil.c

📁 超强的大尺度水文模拟工具
💻 C
字号:
#include <stdio.h>#include <stdlib.h>#include <vicNl.h>static char vcid[] = "$Id: initialize_soil.c,v 4.1 2000/05/16 21:07:16 vicadmin Exp $";void initialize_soil (cell_data_struct **cell,                       soil_con_struct   *soil_con,		      int                veg_num)/**********************************************************************	initialize_soil		Keith Cherkauer		July 31, 1996  This routine initializes the soil variable arrays for each new  grid cell.**********************************************************************/{  extern option_struct options;  int j, band, index;    for ( j = 0 ; j <= veg_num ; j++)    for(band=0;band<options.SNOW_BAND;band++)       for(index=0;index<options.Nlayer;index++)	cell[j][band].layer[index].moist = soil_con->init_moist[index];}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -