随着数字图像相关法(Digital Image Correlation,DIC)的理论研究日趋成熟,很多学者提供了一些可供研究学习的开源算法代码,促进了DIC的研究和应用,本文分享一些开源的算法以及可免费使用的商业软件供大家学习和参考。
All posts by ht
常用疲劳试验标准汇总
疲劳试验定义
疲劳试验是指通过金属材料实验测定金属材料的σ-1,绘制材料的S-N曲线,进而观察疲劳破坏现象和断口特征,进而学会对称循环下测定金属材料疲劳极限的方法。检测设备一般有疲劳试验机和游标卡尺。
最简洁的wordpress-sqlite安装
sudo apt install apache2 libapache2-mod-php php7.4-sqlite3
wget https://downloads.wordpress.org/plugin/sqlite-integration.1.8.1.zip
wget https://wordpress.org/latest.tar.gz
tar xvfz ./latest.tar.gz
unzip ./sqlite-integration.1.8.1.zip
sudo mv wordpress /var/www/html/
sudo cp wp-config-sample.php wp-config.php
sudo mv sqlite-integration /var/www/html/wordpress/wp-content/plugins/
sudo cp db.php /var/www/html/wordpress/wp-content/
sudo chown -R www-data:www-data ./wordpress
sudo service apache2 restart
http://IP/wordpress/wp-admin/install.php
more note for matplotlib and python
1, 稍大的数据,y轴用科学计数法表示标签
plt.ticklabel_format(axis=’y’, style=’sci’, scilimits=(0,0))
2,合并列表里的元素
b=[[1,2,5],[3,4,10],[2,10,8]]
c=[item for lit in b for item in lit]
python xlrd excel文件读写
pip install xlrd==1.2.0
xlrd-2.0.1只支持读取xls,不支持读取xlsx, xlrd-1.2.0版本同时支持xlsx和xls格式。
vector calculation in numpy
# show vector calculation in numpy function
import numpy as np
# new vec
vec_1 = np.array([1,1,0])
vec_2 = np.array([2,3,1])
# mode of the vec
vec_mode = np.linalg.norm(vec_1)
# dot:a.b=|a|*|b|*cos(theta)
vec_dot = np.dot(vec_1, vec_2)
# cross: a*b = c, |a*b|=|a|*|b|*sin(theta)
vec_cross = np.cross(vec_1, vec_2)
print(' mode for vev_1:', vec_mode, '\n dot:', vec_dot, '\n cross:', vec_cross)
在 Ubuntu 20.04 LTS 桌面版上安装 MS 字体
使用命令行安装
$ sudo apt update
$ sudo apt install ttf-mscorefonts-installer
$ sudo fc-cache -f -v
将所有的 Windows 字体复制到 /usr/share/fonts 目录下并使用一下命令安装字体:
$ mkdir /usr/share/fonts/WindowsFonts
$ cp /Windowsdrive/Windows/Fonts/* /usr/share/fonts/WindowsFonts
$ chmod 755 /usr/share/fonts/WindowsFonts/*
fc-cache
ubuntu wps 不能输入中文
sudo vim /usr/bin/wps (et, wpp)
在 #!/bin/bash 下面输入(搜狗基于fcitx,系统内可能是ibus)
export XMODIFIERS=”@im=fcitx”`
export QT_IM_MODULE=”fcitx”
Ubuntu18.04下解决Qt出现qt.qpa.plugin:Could not load the Qt platform plugin “xcb“问题
sudo apt-get install libxcb-xinerama0
from:
https://cloud.tencent.com/developer/article/1726400
photoshop loadlibrary failed with error 87
Windows 10上运行photoshop、nextcloud等软件的时候出现错误提示“loadlibrary failed with error 87”,网上有很多同样的错误,总结如下:
1、此问题从Windows 8就开始出现了,发生问题的软件都是 CAD、PS 之类,其实是AMD显卡的问题,将驱动恢复到2013年之前即可。
2、简单粗暴有效的一个方法是进入C:\Windows\System32 ,搜索atig6pxx.dll 全部删除,为了以防万一,请提前备份。
注意:在删除文件时,可能会提示你需要管理员权限。这时,点击“继续”即可。
3、删除完毕问题解决,可重启软件,不再出现错误提示。