GG修改器破解版下载地址:https://ghb2023zs.bj.bcebos.com/gg/xgq/ggxgq?GGXGQ
大家好,今天小编为大家分享关于gg修改器怎么没有代码中文_gg修改器怎么调成中文的内容,赶快来一起来看看吧。
下载 gCAP3D 全部代码
FFLAGS = -O
CFLAGS = ${FFLAGS}
CAP = cap3D mtdcmp radpttn
SUBS = fft.o Complex.o radiats.o grid3d.o futterman.o sacio.o trap.o
all: $(CAP)
cap3D : %:%.o $(SUBS) cap_sub.o
$(LINK.f) -o $@ $^ -L$(SACHOME)/lib -lsac -lsacio
mtdcmp: mtdcmp.o
$(LINK.f) -o $@ $@.o
radpttn: radpttn.o radiats.o
$(LINK.c) -o $@ $@.o radiats.o -lm
%/mt.all: %/weight.dat
for dp in 10 15 20; do cap3D.pl -G${HOME}/data/models/Glib -H0.2 -P300000/65 -Q0.02 -T50/100 -S2/5/0 -D2/1/0.5 -C0.05/0.3/0.02/0.1 -W1 -X10 -Mcus_$dp $*; head -1 $*/cus_$dp.out >> $@; done
%/mt.best: %/mt.all
(depth.pl lt; $* > $*/depth.ps) >& $@
clean:
rm -f $(CAP) *.o
上面是 Makefile 全部内容,在最上面增加一行
FC = gfortran -ffixed-line-length-none
把 14 行的 LINK.c 换成 FC,修改后如下
FC = gfortran -ffixed-line-length-none
FFLAGS = -O
CFLAGS = ${FFLAGS}
SACHOME = /home/ubuntu/sac
CAP = cap3D mtdcmp radpttn
SUBS = fft.o Complex.o radiats.o grid3d.o futterman.o sacio.o trap.o
all: $(CAP)
cap3D : %:%.o $(SUBS) cap_sub.o
$(LINK.f) -o $@ $^ -L$(SACHOME)/lib -lsac -lsacio
mtdcmp: mtdcmp.o
$(FC) -o $@ $@.o
radpttn: radpttn.o radiats.o
$(LINK.c) -o $@ $@.o radiats.o -lm
%/mt.all: %/weight.dat
for dp in 10 15 20; do cap3D.pl -G${HOME}/data/models/Glib -H0.2 -P300000/65 -Q0.02 -T50/100 -S2/5/0 -D2/1/0.5 -C0.05/0.3/0.02/0.1 -W1 -X10 -Mcus_$dp $*; head -1 $*/cus_$dp.out >> $@; done
%/mt.best: %/mt.all
(depth.pl lt; $* > $*/depth.ps) >& $@
clean:
rm -f $(CAP) *.o
另外还要给出 SACHOME 的位置,进行这些操作前需要安装好 SAC 软件。
#!/usr/bin/env perl
#
# A user-friendly PERL interface to the CAP3D source inversion code cap3D
#
# written by Lupei Zhu, 3/6/1998, Caltech
#
# revision history
# 6/18/2001 add usage and documentation.
# 11/05/2012 add isotropic and CLVD search (-J).
# 1/13/2013 add option to output potency tensor parameters.
# 04/15/2014 add option to use 3D Green’s function (-Y).
# 05/05/2015 no need of initial magnitude input.
#
# these are the only things one need to change based on the site installation
$home = $ENV{HOME}; # my home directory
require "$home/gCAP3D/cap_plt.pl"; # include plot script
#================defaults======================================
$cmd = "cap3D";
$green = "$home/gCAP3D/models/Glib"; #green’s function location
$ngf = 3; #number of fundamental sources of 1D FK Green’s functions for DC
$eloc = ".";
$repeat = 0;
$bootstrap = 0;
$fm_thr = 0.01;
$appdx=’’;
$disp=0;
$mltp=0;
$weight="weight.dat";
修改第17行为本地cap_plt.pl的位置,第21行本地格林函数的位置。
修改以上两项后,make 一下,会提示上图的错误。
百度一在圈,有人说是sac101.6a版本有问题,换成sac102就没问题了。
重新安装 102 版 sac 问题解决,编译通过。
把 gCAP3D 的路径加入到 PATH,source .bashrc 就可以使用了。
下载 fk 源代码
wget http://www.eas.slu.edu/People/LZhu/downloads/fk3.3.tar
解压缩
tar -xvf fk3.3.tar
mkdir ~/src
mv fk ~/src
cd src
cd fk
修改 Makefile 文件,Makefile 里的文件有好多需要修改的,
fk3.3(下载于 2021-01-13,软件包中文件的最新日期为 2019-06-18)的原始代码存在一些问题,因而需要做一些小修改方可使用。主要修改如下:
参考 地震 “学” 软件中 fk 的修改方法,并且给出了 patch 文件,直接 patch 就可以了
patch < fk3.3-v20190618.patch
make
make clean
再把 fk 的路径加入到 PATH 中
export PATH=$SACHOME/bin:/home/ubuntu/gCAP3D:/home/ubuntu/src/fk/:$PATH
测试
(base) ubuntu@ubuntu:~$ fk.pl
Usage: fk.pl -Mmodel/depth[/f_or_k] [-D] [-Hf1/f2] [-Nnt/dt/smth/dk/taper] [-Ppmin/pmax[/kmax]] [-Rrdep] [-SsrcType] [-Uupdn] [-Xcmd] distances ...
-M: model name and source depth in km. f triggers earth flattening (off), k indicates that the 3rd column is vp/vs ratio (vp).
model has the following format (in units of km, km/s, g/cm3):
thickness vs vp_or_vp/vs [rho Qs Qp]
rho=0.77 + 0.32*vp if not provided or the 4th column is larger than 20 (treated as Qs).
Qs=500, Qp=2*Qs, if they are not specified.
If the first layer thickness is zero, it represents the top elastic half-space.
Otherwise, the top half-space is assumed to be vacuum and does not need to be specified.
The last layer (i.e. the bottom half space) thickness should be always be zero.
-D: use degrees instead of km (off).
-H: apply a high-pass filter with a cosine transition zone between freq. f1 and f2 in Hz (0/0).
-N: nt is the number of points, must be 2^n (256).
Note that nt=1 pute static displacements (require st_piled).
nt=2 pute static displacements using the dynamic solution.
dt is the sampling interval (1 sec).
smth makes the final sampling interval to be dt/smth, must be 2^n (1).
dk is the non-dimensional sampling interval of wavenumber (0.3).
taper applies a low-pass cosine filter at fc=(1-taper)*f_Niquest (0.3).
-P: specify the min. and max. slownesses in term of 1/vs_at_the_source (0/1)
and optionally kmax at zero frequency in term of 1/hs (15).
-R: receiver depth (0).
-S: 0=explosion; 1=single force; 2=double couple (2).
-U: 1=down-going wave only; -1=up-going wave only (0).
-X: dump the input to cmd for debug (fk).
Examples
* pute Green’s functions up to 5 Hz with a duration of 51.2 s and at a dt of 0.1 s every 5 kms for a 15 km deep source in the HK model, use
fk.pl -Mhk/15/k -N512/0.1 05 10 15 20 25 30 35 40 45 50 55 60 65 70 75 80
* pute static Green’s functions for the same source, use
fk.pl -Mhk/15/k -N2 05 10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 > st.out
or use
fk.pl -Mhk/15/k -N1 05 10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 > st.out
* pute Green’s functions every 10 degrees for a 10 km deep source in the PREM model.
fk.pl -Mprem/10/f -N512/5 -H0.01/0.02 -D 10 20 30 40 50 60
Author: Lupei Zhu, 02/15/2005, SLU
这步安装也完成了。
以上就是关于gg修改器怎么没有代码中文_gg修改器怎么调成中文的全部内容,感谢大家的浏览观看,如果你喜欢本站的文章可以CTRL+D收藏哦。
gg修改器无root怎么做,轻松修改游戏,GG修改器助你无Root达成愿望 大小:11.82MB4,217人安装 对于许多游戏玩家而言,在玩游戏时碰到困难、卡关、收集道具困难等情况都是非常烦恼……
下载gg游戏修改器华为版下载,好评如潮的GG游戏修改器华为版下载,实用兼容性强 大小:4.51MB4,314人安装 GG游戏修改器是一款相当实用的手机游戏辅助工具。作为备受玩家推崇的外挂软件,GG游……
下载gg修改器app最新版,GG修改器APP下载 大小:13.16MB5,522人安装 能够满足不同玩家修改游戏参数的需求,在游戏运行过程中,可以通过改变游戏的后台脚……
下载gg修改器刷迷你币中文版,GG修改器刷迷你币中文版:改变游戏世界的神器 大小:19.62MB3,895人安装 作为一名游戏爱好者,大家都知道迷你世界,一个非常受欢迎的沙盒游戏。在这个游戏中……
下载gg游戏修改器怎么修改恐龙岛,探秘GG游戏修改器,让你尽情修改恐龙岛 大小:9.39MB4,502人安装 恐龙岛是一款众所周知的口袋游戏,吸引了众多玩家的参与。但是,在游戏中,我们可能……
下载挨饿荒野gg修改器中文版,挑战极限,挥洒人生赞美挑战者荒野GG修改器中文版 大小:11.64MB4,006人安装 挑战者荒野GG修改器中文版作为游戏辅助工具,改变了玩家们的游戏体验,让游戏从无聊……
下载平板怎么给gg修改器root_gg修改器怎么用修改 大小:12.42MB5,263人安装 大家好,今天小编为大家分享关于平板怎么给gg修改器root_gg修改器怎么用修改的内容……
下载剑与远征gg修改器最新版,剑与远征GG修改器最新版:改变游戏体验 大小:14.36MB4,421人安装 剑与远征是一款备受玩家喜爱的卡牌游戏,而GG修改器则是一款备受玩家喜爱的游戏辅助……
下载gg修改器免root框架_gg修改器免root框架中文下载 大小:19.55MB5,370人安装 大家好,今天小编为大家分享关于gg修改器免root框架_gg修改器免root框架中文下载的……
下载gg修改器root小米手机_小米手机怎么给gg修改器root 大小:6.89MB5,242人安装 大家好,今天小编为大家分享关于gg修改器root小米手机_小米手机怎么给gg修改器root……
下载