-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (73 loc) · 3.2 KB
/
Copy pathindex.html
File metadata and controls
82 lines (73 loc) · 3.2 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SoftUni Blog</title>
<link rel="stylesheet" type="text/css" href="styles/style.css"/>
<script src="scripts/jquery-3.3.1.js"></script>
<script src="scripts/bootstrap.js"></script>
</head>
<body>
<header>
<div class="navbar navbar-default navbar-fixed-top text-uppercase">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand">SoftUni Blog</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="register.html">Register</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</div>
</div>
</div>
</header>
<main>
<div class="container body-content">
<div class="row">
<div class="col-md-6">
<article>
<header>
<h2>New Solar Collector Tech Could Lower Costs for Concentrating Solar Power</h2>
</header>
<p>
A new solar collector is starting a trend when it comes to concentrating solar power (CSP)
technology. For the first time ever, “ganged heliostats” could be a viable option for new CSP
systems.
Skysun, a startup out of Bay Village, Ohio, developed the new design that could help cut the
cost of a CSP system by more than 30%.
GANGED HELIOSTAT TECHNOLOGY
CSP technologies use mirrors to reflect and concentrate sunlight onto receivers that collect
solar energy and convert it to heat. The mirrors, also known as heliostats, typically require
their own base, foundation, and motor.
Skysun’s solar collector groups together heliostats through shared motors and support
structures, which has the potential to cut the total installed cost of CSP systems in half.
While other ganged heliostat concepts have previously been proposed, none of them have shown to
be cost competitive or viable—until now.
</p>
<small class="author">
<p>Maria M</p>
</small>
<footer>
<div class="btn pull-right">
<a class="btn btn-default btn-xs" href="viewpost.html">Read more »</a>
</div>
</footer>
</article>
</div>
</div>
</div>
</main>
<footer>
<div class="container modal-footer">
<p>© 2018 - Solar Systems Foundation</p>
</div>
</footer>
</body>
</html>