-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublication.html
118 lines (118 loc) · 5.25 KB
/
publication.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Publication | Haopeng Duan</title>
<link rel="stylesheet" type="text/css" href="https://hpduan.cn/css/styles.css" media="screen" />
<link rel="stylesheet" type="text/css" href="https://hpduan.cn/css/print.css" media="print" />
<link rel="shortcut icon" href="https://hpduan.cn/images/mydraw.png?v=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
body {
zoom: 1;
transition: zoom 0.3s ease;
}
@media (min-width: 1200px) {
body {
zoom: 1.5;
}
}
</style>
<!-- .....................function..................... -->
<!-- ..................updateDateTime.................. -->
<script>
function updateDateTime() {
var now = new Date();
var dateOptions = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
var formattedDate = now.toLocaleDateString('en-US', dateOptions);
document.getElementById('date').textContent = formattedDate;
var timeOptions = { hour: 'numeric', minute: 'numeric', second: 'numeric', timeZoneName: 'short' };
var formattedTime = now.toLocaleTimeString('en-US', timeOptions);
document.getElementById('time').textContent = formattedTime;
}
setInterval(updateDateTime, 1000);
updateDateTime();
</script>
<!-- ................Disable shortcuts................ -->
<script type="text/javascript">
window.onload = function(){
document.onkeydown = function (){
var e = window.event || arguments[0];
//F12
if(e.keyCode == 123){
return false;
//Ctrl+Shift+I
}else if((e.ctrlKey) && (e.shiftKey) && (e.keyCode == 73)){
return false;
//Shift+F10
}else if((e.shiftKey) && (e.keyCode == 121)){
return false;
//Ctrl+U
}else if((e.ctrlKey) && (e.keyCode == 85)){
return false;
}
};
document.oncontextmenu = function (){
return false;
}
}
</script>
<!-- .....................includes.................... -->
<script>
function includeHTML() {
var elements = document.querySelectorAll('[include-html]');
elements.forEach(function(element) {
var file = element.getAttribute('include-html');
if (file) {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.status == 200) {
element.innerHTML = this.responseText;
} else if (this.status == 404) {
element.innerHTML = "Page not found.";
}
}
};
xhr.open('GET', file, true);
xhr.send();
}
});
}
document.addEventListener('DOMContentLoaded', includeHTML);
</script>
</head>
<body>
<div id="wrapper">
<!-- .....................header..................... -->
<div include-html="https://hpduan.cn/includes/header.html"></div>
<!-- ....................contents.................... -->
<section id="main">
<!-- Introduction -->
<aside id="sidebar1">
<div include-html="https://hpduan.cn/includes/aside_left.html"></div>
<div class="clustrmaps">
<script type='text/javascript' id='clustrmaps' src='//cdn.clustrmaps.com/map_v2.js?cl=4dbeee&w=190&t=tt&d=CTb7T3QM6ndYAoNzVADuIko4E27W68g4oGV0ElYv0_Q&co=e4e4e4&ct=000000&cmo=a2142f&cmn=a2142f'></script>
</div>
</aside>
<!-- Main content -->
<section id="content">
<article>
<h2>Completed Individually</h2>
<p style="font-size: 17px;"><a href="https://doi.org/10.1061/JBENF2.BEENG-7058" target="_blank">[3] Liqiang Jiang, <strong>Haopeng Duan</strong>, Tianxing Wen*, Lizhong Jiang. Effects of near-fault pulse-like ground motions and pulse parameters on a high-speed railway long-span arch bridge-track system. Journal of Bridge Engineering, 2024, 30(2): 04024112.</a></p>
<p style="font-size: 17px;"><a href="https://doi.org/10.1016/j.soildyn.2024.108811" target="_blank">[2] <strong>Haopeng Duan</strong>, Liqiang Jiang*, Tianxing Wen, Lizhong Jiang. An improved interlayer area damage model for seismic damage assessment of a high-speed railway long-span arch bridge-track system. Soil Dynamics and Earthquake Engineering, 2024, 183: 108811.</a></p>
<p style="font-size: 17px;"><a href="https://www.engineeringmechanics.cn/cn/article/doi/10.6052/j.issn.1000-4750.2021.06.0438" target="_blank">[1] Zhonghao Zhang, <strong>Haopeng Duan</strong>, Yanchun Yu*, Xudong Zhi, Feng Fan. Stability and reliability analysis of tension-string bidirectional lattice monolayer cylindrical reticulated shells. Engineering Mechanics, 2022, 39(10): 161172.</a></p>
</article>
<article>
<h2>Completed with Cooperators</h2>
<p style="font-size: 17px;"><a href="https://doi.org/10.1142/S0219455426500744" target="_blank">[1] Tianxing Wen, <strong>Haopeng Duan</strong>, Liqiang Jiang*, Wangbao Zhou, Yanliang Du, Lizhong Jiang. Refined probabilistic seismic demand modeling of high-speed railway bridge under near-fault hanging-wall effects and velocity pulse effects by a novel ground motion selection approach. International Journal of Structural Stability and Dynamics, 2024, 26(7): 2650074.</a></p>
</article>
</section>
</section>
<!-- .....................footer..................... -->
<div include-html="https://hpduan.cn/includes/footer.html"></div>
<!-- .......................end...................... -->
</div>
</body>
</html>