?? write_vegvar.c
字號:
#include <stdio.h>
#include <stdlib.h>
#include <vicNl.h>
static char vcid[] = "$Id: write_vegvar.c,v 4.1 2000/05/16 21:07:16 vicadmin Exp $";
void write_vegvar(veg_var_struct *veg,
int n)
/**********************************************************************
write_vegvar Keith Cherkauer May 29, 1996
This routine writes vegetation variables to stdout. Used primarily
for debugging purposes.
Modifications:
5/21/96 Routine was modified to allow for variable
number of layers KAC
**********************************************************************/
{
printf("Vegetation Variables: vegtype %i\n",n);
printf("\tcanopyevap = %f\n", veg->canopyevap);
printf("\tWdew = %f\n", veg->Wdew);
printf("\tthroughfall = %f\n", veg->throughfall);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -