标题:请教这部分程序的中文注释。
只看楼主
chenxidong24
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-12-2
 问题点数:0 回复次数:0 
请教这部分程序的中文注释。
#if !RP_NODE  
  /* compute force on piston wall */
  force = 0.0;
  begin_f_loop (f, t)
    {
      real *AA;

      AA = F_AREA_CACHE (f, t);
      force += F_P (f, t) * AA[0];
    }
  end_f_loop (f, t)

# if RP_2D
  if (rp_axi)
    force *= 2.0 * M_PI;
# endif

  read_loc_velo_file (&loc, &velo);

  /* add in spring force */
# define K_SPRING 150000
  {
    real init_disp = 0.4 * 0.0254;
    real s_force =  K_SPRING * (loc + init_disp);

    force = force - s_force;
  }
搜索更多相关主题的帖子: spring 中文 
2011-12-02 19:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-356803-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.828014 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved