You should write because writing makes you a better person.

0%

硬件需求

Nvidia CUDA driver version 450.80.02 or later (Linux), version 452.39 or later (windows)

仿真需求

需要设置为express模式:

img

目前限制

  1. 边界条件仅支持PML
  2. frequency dependent mode source profiles are not supported.
  3. time monitors 会限制仿真速度

其他

  1. For multiple jobs it is recommended to run them in series rather than in parallel.

脚本实现

1
2
3
4
5
setnamed("FDTD", "express mode", true);
setresource("FDTD","GPU", true);
setresource("FDTD", 3, "GPU Device", "Auto");
setresource("FDTD", "GPU", false);
setresource("FDTD", "CPU", true); //< equivalent to previous line

参考文献

  1. https://optics.ansys.com/hc/en-us/articles/17518942465811-FDTD-GPU-Solver-Information

  1. fatal: unable to access 'https://github.com/ovshinsky/ovshinsky.github.io.git/': Failed to connect to github.com port 443 after 21098 ms: Couldn't connect to server
    解决方法:github连不上了,稍等重新hexo d部署页面即可。
  2. 图片显示不出来

.md文件中图片路径前面的..两个点删掉

主要是我自己用的比较多的一些软件,有一些还没有安装:

L-edit

链接:https://pan.baidu.com/s/1XHCDHUSGgn-p5HQMH1VrIw
提取码:f1ik

Pycharm

https://www.yuque.com/ningmengna-6ulrv/gu0o2u/gu4tmfgur2kqtq7o

Adobe 全家桶 (PS、AI、Acrobat)

https://www.yuque.com/ruanjian-jkyer/qik9br

MATLAB
ANSYS Lumerical r2.3 支持gpu加速
安装教程:

【实用软件】ANSYS Lumerical 2023 R1安装教程 (qq.com)

Lumerical FDTD 2023 R2.3安装-CSDN博客

下载链接:

2023r1: https://pan.baidu.com/s/1Tznv7gMIFvgvcfMpyT0ghQ?pwd=imkg

2023r2.3: https://pan.baidu.com/s/1V9j8SsaU4d2-5Zk1TUKWFQ?pwd=h9vr

2024r1:Luemrical 2024 R1
链接:https://pan.baidu.com/s/1wbxZ074Z184wBtkcL6Yc9A
提取码:admw

gpu加速配置教程:FDTD GPU Solver Information – Ansys Optics
18518186955411

注意事项:
  1. GPU仿真加速不支持对称和反对称的边界条件

  2. 运行软件前需要先启动license manager服务

  3. 采用gpu仿真需要勾选:

image-20231225175420746

Klayout

KLayout Layout Viewer And Editor

L-edit
Origin

https://note.youdao.com/s/UJLHVtw8

Typora
Islide
Comsol
3ds max/ C4d

【实用软件】Cinema4D 2024(C4D 2024)安装教程 (yuque.com)还是用C4D吧

Reference:
  1. 不迷路资源库 (yuque.com),大概可以淘宝转存成百度网盘下载。

网页环境配置

  1. 安装node.js和git

  2. npm install hexo-cli -g

  3. hexo init myblog

    这里因为可能运行路径不对卡了挺久,可能是因为默认的路径不能创建文件夹,最后发现在桌面上右键cmd打开搞定了。

  4. 切换到项目中

    cd myblog

  5. 安装依赖

    npm install

  6. 本地预览

    hexo g

    hexo s

    然后在浏览器中输入对应的端口网页

  7. 新建文章

    hexo new test

    本质上就是新建了一个markdown文件,可以后续进入这个markdown文件进行修改和写东西

  8. 就可以重复之前的预览看看结果啦

  9. 创建github pages

    创建github仓库:username.github.io

  10. 修改之前生成的文件夹中配置文件,_config.yml,

    修改为:

    1
    2
    3
    4
    deploy:
    type: git
    repo: https://github.com/ovshinsky/ovshinsky.github.io.git
    branch: main
  11. 部署执行命令:

    hexo d

    可能需要安装插件:

    npm install hexo-deployer-git --save

  12. 然后就可以打开ovshinsky.github.io查看效果

主题配置

1.安装主题

在主文件夹里运行cmd:

git clone https://github.com/theme-next/hexo-theme-next.git themes/next

切换版本(可选):

cd themes/hexo-theme-next

git checkout tags/v6.0.1

2.配置主题

打开主文件夹中的_config.yml,配置为theme:next

评论配置:

采用gitalk配置,next的主题里预留了接口:

打开next文件夹中的_config.yml,创建一个Comment仓库,配置为

1
2
3
4
5
6
7
8
9
10
11
12
gitalk:
enable: true #false
github_id: ovshinsky # GitHub repo owner
repo: BlogComments # Repository name to store issues
client_id: 4299921ded3b8e***** # GitHub Application Client ID
client_secret: 90fa712acbeec6ccc4e62************** # GitHub Application Client Secret
admin_user: ovshinsky # GitHub repo owner and collaborators, only these guys can initialize gitHub issues
distraction_free_mode: false # Facebook-like distraction free mode
\# Gitalk's display language depends on user's browser or system environment
\# If you want everyone visiting your site to see a uniform language, you can set a force language value
\# Available values: en | es-ES | fr | ru | zh-CN | zh-TW
language:

图片配置:

安装依赖:npm install hexo-renderer-marked

在_config.yml中设置:

1
2
3
4
post_asset_folder: true
marked:
prependRoot: true
postAsset: true

最后,按如下方法修改typora的配置即可:

image-20231221133235218

参考:

  1. Hexo 博客 NexT 主题的安装使用 | Julian’s blog (ustc.edu.cn), access in 2023.12.21.
  2. “了不起的markdown”, 毕小朋,电子工业出版社,2019.
  3. Hexo 添加图片——不用插件,超简单_hexo添加图片-CSDN博客
  4. hexo博客如何插入图片 - 知乎 (zhihu.com)

Hexo运行

在文件夹中右键,选择命令提示符或者git bush

创建

hexo new [布局] <标题>

布局默认为[_drafts]文章,或者[_drafts] 草稿;或者[source]页面。

可以通过publish _drafts <标题>来发布草稿

其中布局和保存文件夹的对应关系如下:

post source/_posts
page source
draft source/_drafts

预览

hexo clean

hexo g

hexo s

发布

hexo d

添加附件

1
<a href="/download/[文件名]"download>[想要显示的文本]</a>

记得[]要删掉。

REF: Hexo添加附件下载功能 | 清河的博客 (lasonneil.github.io)

插入图片

插入图片后把.md文件中前面两个点删掉,可能typora和网页导入的方法不一样。