📄 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 + -