-
输电塔Ansys模型
利用ansys APDL语言编写的输电塔有限元模型,可以用于输电塔动力分析(The finite element model of transmission tower, written in ANSYS APDL language, can be used for power analysis of transmission tower)
- 2020-12-17 16:39:12下载
- 积分:1
-
project_comfinal
说明: it can add two numbers and shows the answer
- 2019-05-28 19:16:02下载
- 积分:1
-
I used an operation, with foxpro addendum to the radio music system, functions m...
本人以前的一次作业,用foxpro编的电台音乐系统,功能比较完善。-I used an operation, with foxpro addendum to the radio music system, functions more perfect.
- 2022-03-06 08:59:10下载
- 积分:1
-
heterogeneity Chain inquiries. Storage different structure
异质链表查询.存储不同的结构-heterogeneity Chain inquiries. Storage different structure
- 2022-05-07 22:10:45下载
- 积分:1
-
用javascript实现的Naught and Crosses,就是我们通常所说的tic
用javascript实现的Naught and Crosses,就是我们通常所说的tic-tac-toe游戏。附加图片和完整代码-achieved using javascript and Crosses Naught is what we usually refer to the membrane-tac-toe game. Additional photographs and complete code
- 2022-02-22 09:20:37下载
- 积分:1
-
TDMS文件存储
波形文件存储,以TDMS文件形式存储!可以调整频率形式,存储周期就会改变!(Waveform file storage, in the form of TDMS file storage!)
- 2020-11-04 12:19:51下载
- 积分:1
-
周立功lpc2200开发发光盘上的文档,开发办线路图
周立功lpc2200开发发光盘上的文档,开发办线路图-development of the CD-ROM documentation, the Office for the Development of the road map
- 2022-04-17 09:23:47下载
- 积分:1
-
thinkinc++(书,中文,源码),初学者必备的一本好书
thinkinc++(书,中文,源码),初学者必备的一本好书-thinkinc++ (books, Chinese, source), beginners must have a good book
- 2022-04-16 18:11:26下载
- 积分:1
-
计算湍流相位屏
说明: 分行法实现湍流相位屏,并计算相关参数。具体数值自行调整即可。(thanks for your downlaoding)
- 2021-03-12 16:32:18下载
- 积分:1
-
Delphi 设置打印纸大小
Delphi 设置打印纸张大小,手动设置打印纸的长度和宽度,自定义纸张。相关代码:
procedure TForm1.SetPaperSize(cx, cy: Integer);
var
a,b,c: array[0..255]of char;
bb: Cardinal;
ee: PDEVMODE;
begin
printer.PrinterIndex := printer.PrinterIndex;
printer.GetPrinter(a,b,c,bb);
ee:= GlobalLock(bb);
ee^.dmPaperSize := DMPAPER_USER;
ee^.dmPaperLength := cy*10;
ee^.dmPaperWidth := cx*10;
ee^.dmFields :=ee^.dmFields or DM_PAPERSIZE or
DM_PAPERWIDTH or
DM_PAPERLENGTH;
ee^.dmFields := ee^.dmFields or DMBIN_MANUAL;
ee^.dmDefaultSource :=DMBIN_MANUAL;
GlobalUnlock(bb);
printer.PrinterIndex := printer.PrinterIndex;
end;
- 2023-01-17 00:20:03下载
- 积分:1