Fehler bei der Verarbeitung der Vorlage.
The following has evaluated to null or missing:
==> cmsEntity.getLocalizedField(profile, "/entity/fields/title")  [in template "20116#20152#259373" at line 10, column 25]

----
Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign productTitle = cmsEntity.getL...  [in template "20116#20152#259373" at line 10, column 1]
----
1<#include "${templatesPath}/227222">  
2 
3<#if cmsEntity?has_content> 
4 
5<#assign mainImage = "" > 
6<#if cmsEntity.getLocalizedField(profile, "/entity/assets/mainImage")?has_content> 
7    <#assign mainImage = cmsEntity.getLocalizedField(profile, "/entity/assets/mainImage") > 
8</#if> 
9 
10<#assign productTitle = cmsEntity.getLocalizedField(profile, "/entity/fields/title")> 
11<#assign products = [] > 
12<#if cmsEntity.getField(profile, "/entity/relationships/bundles")?has_content> 
13    <#assign bundles = cmsEntity.getField(profile, "/entity/relationships/bundles") > 
14    <#assign products = cmsBundleService.getProductsInBundle(profile, bundles.get(0).id)> 
15</#if> 
16 
17<#assign mobileImg = ""> 
18<#if  cmsEntity.getLocalizedField(profile, "/entity/assets/mobileMainImage")?has_content> 
19    <#assign mobileMainImage = cmsEntity.getLocalizedField(profile, "/entity/assets/mobileMainImage") > 
20    <#if mobileMainImage.url?has_content> 
21        <#assign mobileImg = mobileMainImage.url> 
22    </#if> 
23</#if> 
24 
25<#assign portalUrl = themeDisplay.getPortalURL() > 
26<#assign currentURL = portalUrl + themeDisplay.getURLCurrent()  > 
27<@appendHTMLMetas currentURL cmsEntity /> 
28 
29<div class="main-image-container"> 
30 
31<div class="parallax-window" data-parallax="scroll"></div> 
32 
33<#if cmsEntity.getField(profile, "/entity/fields/summary")?has_content > 
34    <#assign summary = cmsContentFormatterService.getMarkdown(cmsEntity.getLocalizedField(profile, "/entity/fields/summary"))> 
35</#if> 
36 
37 
38    <@sectionHeader title="${title}" menuTitle="${menuTitle}" cssClasses="background" id="solutions-main-image"/>  
39    <div class="gradient-layer-black-left"></div> 
40 
41    <div class="bg-content">  
42        <div class="first-section">  
43            <h1 class="product-page-heading text-light">${productTitle}</h1> 
44            <div class="row justify-content-between"> 
45                <div class="col-12 col-md-7 article-content"> 
46                    <#if summary?has_content> 
47                        <div class="product-page-intro text-light">${summary}</div>             
48                    </#if> 
49                     
50                     
51                    <#if cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/shortTermMaxSpl")?has_content > 
52                        <#assign spl = cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/shortTermMaxSpl") > 
53                        <div class="row text-white mb-4">  
54                            <div class="col-12 col-xl-6">  
55                                <div class="media product-page-media">  
56                                    <@imageThumbnail src="${getProductSpecificationIconUrl('SPL_white')}" id="" cssClasses="mr-3" thumbnail="techSpecIcon"/> 
57                                    <div class="media-body"> <p class="mt-0 text-bolder"><@liferay.language key="spl"/></p> <p class="small">${spl} dB</p></div> 
58                                </div>  
59                            </div> 
60                    </#if> 
61 
62                    <#assign  
63                        frequencyResponseAccuracy = "" 
64                        frequencyResponseLowCutoff = "" 
65                        frequencyResponseHighCutoff = "" 
66
67                     
68                    <#if cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseAccuracy")?has_content >  
69                        <#assign frequencyResponseAccuracy = cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseAccuracy")> 
70                    </#if> 
71                    <#if cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseLowCutoff")?has_content >  
72                        <#assign frequencyResponseLowCutoff = cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseLowCutoff")> 
73                    </#if> 
74                    <#if cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseHighCutoff")?has_content >  
75                        <#assign frequencyResponseHighCutoff = cmsEntity.getField(profile, "/entity/relationships/bundleSpecifications/properties/frequencyResponseHighCutoff")> 
76                    </#if>                             
77 
78                    <#if frequencyResponseAccuracy?has_content && frequencyResponseLowCutoff?has_content && frequencyResponseHighCutoff?has_content> 
79                            <div class="col-12 col-xl-6">  
80                                <div class="media product-page-media">  
81                                    <@imageThumbnail src="${getProductSpecificationIconUrl('AccuracyOfFrequencyResponse_white')}" id="" cssClasses="mr-3" thumbnail="techSpecIcon"/> 
82                                    <div class="media-body">  
83                                        <p class="mt-0 text-bolder"><@liferay.language key="accuracy-of-frequency-response"/></p>  
84                                        <p class="small"> 
85                                            ${frequencyResponseLowCutoff} Hz -  
86                                            ${frequencyResponseHighCutoff/1000} kHz   
87                                            &#xB1;${frequencyResponseAccuracy} dB </p> 
88                                    </div> 
89                                </div>  
90                            </div>  
91                        </div> 
92                    </#if> 
93 
94                    <hr class="bg-white"> 
95                     
96                    <#if products?has_content> 
97                        <p class="mt-4 text-bolder text-light"><@liferay.language key="products-in-this-solution"/></p> 
98                        <#list products as product> 
99                            <#assign i = product?index> 
100                            <#assign quantity = bundles.get(0).relationships.productEntries.get(i).properties.quantity> 
101                            <#assign image = product.getLocalizedField(profile, "/entity/assets/listingImage")> 
102                            <#assign alt = ""> 
103                             
104                            <#assign listingImageRel =  product.getLocalizedField(profile, "/entity/relationships/listingImage/locales")!"" > 
105                             
106                            <#if listingImageRel?has_content && !listingImageRel.properties.isNull("altText")> 
107                                 <#assign alt = localizeField(listingImageRel.properties.altText, profile.getCMSLangCode())> 
108                            </#if> 
109                             
110                            <#assign name = product.getLocalizedField(profile, "/entity/fields/title")> 
111                             
112                            <div class="solution-products"> 
113                                 
114                                <div class="media"> 
115                                    <div class="media-img mr-2"> 
116                                        <img alt="${alt}" src="${image.url}?w=70&fm=png&fl=png8"> 
117                                    </div> 
118                                    <div class="media-body align-self-center"> 
119                                        <span class="h2 text-bold text-light">  
120                                            ${quantity} 
121                                        </span> 
122                                        <span class="text-light"> × </span> 
123                                        <span class="text-bold text-light">${name}</span> 
124                                    </div> 
125                                </div> 
126                            </div> 
127                        </#list> 
128                    </#if> 
129                </div>  
130            </div>  
131        </div>  
132    </div> 
133     
134    <@sectionFooter/>  
135 
136    <@printSubmenu /> 
137 
138    <#if mainImage?has_content && mainImage.url?has_content> 
139        <@parallaxBackground url="${mainImage.url}?w=1250&fm=jpg&q=85" speed="0.4" mobileUrl="${mobileImg}"/> 
140    </#if> 
141 
142</div> 
143     
144    <style> 
145    .solution-products >span{ 
146       vertical-align: middle; 
147
148 
149    .background { 
150            background: none; 
151
152 
153    .bg-content { 
154        position: relative; 
155        min-height: 90vh; 
156
157     
158.background { 
159    position: relative; 
160}  
161 
162@media (min-width: 992px) { 
163    .background { 
164        min-height: calc(100vh - 80px); 
165
166
167 
168    /* 
169    .has-control-menu .background {  
170        height: calc(100vh - 56px - 50px + 500px);  
171
172    */ 
173 
174    .solution-products .media-img { 
175        text-align: center; 
176
177 
178    .solution-products .media-body span { 
179        vertical-align: middle; 
180
181 
182    /* yliajaa olemassaolevan */ 
183    #mainImage .container-padding hr { 
184        margin: 1rem auto; 
185        border: 1px solid black; 
186
187 
188    .text-link { 
189        cursor: pointer; 
190
191 
192    @media (min-width: 992px){ 
193        .first-section .row { 
194            width: 100% !important; 
195
196
197 
198    @media (min-width: 992px) { 
199        .first-section > .row, .first-section .product-page-heading { 
200            width: 50%; 
201
202
203     
204    </style> 
205 
206</#if> 

Compact power

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Class-leading audio

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.


8030C

SPL

104 dB

Frequenzgang

47 Hz - 25 kHz (-6dB)

Abmessungen

H 299 x W 189 x D 178 mm, with Iso-Pod™ (Anzeige in Inch)

Aktive Frequenzweichen

Directivity Control Waveguide (DCW™)-Technologie

Intelligent Signal Sensing (ISS™)-Technologie

Iso-Pod™ Standfuß

Minimum Diffraction Enclosure (MDE™)-Technologie

Optimierte Verstärker

Schutzschaltungen

Bassreflexport-Design

Kompensation von Raumeinflüssen

Vielseitiges Montagezubehör

Händler finden

Geben Sie Ihre Stadt ein, um den nächst gelegenen Händler anzuzeigen.

Filters
X Filters
All
Studiomonitore
Home Audio Lautsprecher
AV Installationslautsprecher
Technischer Service
Experience Centre
SAM Certified
Smart IP Certified
Land

FAQ

Damping Materials Used in Our Monitors

Genelec products use various damping materials such as glass fiber wool, linen fiber wool, and polyester fiber based material (PES). The tables presented below provide a detailed listing of our monitor models and the type of damping material used in each model.

During operation, the air moving in and out of the monitor loudspeaker or subwoofer bass reflex openings does not emit significant amounts of fiber particle dust. The PES wool as material does not emit dust. The linen wool, and glass fiber wool can emit minimum amounts of dust during very high sound level operation. This fiber dust is not hazardous to health.

Studio monitors
SAM™ Studio MonitorsDamping material type
1032CPES
8320APES
8330APES
8340APES
8350APES
8130APES
8240APES
8250APES
8331APES
8341APES
8351APES
8351BPES
8361APES
S360PES
8260ALinen wool
1238CFLinen wool
1238DFLinen wool
1237ALinen wool
1238AGlass wool
1238ACGlass wool
1234AGlass wool
1234ACGlass wool
1236AGlass wool
SAM™ Studio SubwoofersDamping material type
7260ALinen wool
SE7261ALinen wool
7270ALinen wool
7271ALinen wool
7350ALinen wool
7360ALinen wool
7370ALinen wool
7380ALinen wool
7382ALinen wool
8000 Series Studio MonitorsDamping material type
8010APES
8020DPES
8030BPES
8030CPES
8040BPES
8050BPES
1000 Series Studio MonitorsDamping material type
1032BLinen wool
1037CLinen wool
1038CFGlass wool
1038BGlass wool
1038BCGlass wool
1034BGlass wool
1034BCGlass wool
1039AGlass wool
1035BGlass wool
1036AGlass wool
M Series Studio MonitorsDamping material type
M030PES
M040PES
7000 Series Studio SubwoofersDamping material type
7040ALinen wool
7050BNone
7050CLinen wool
7060BLinen wool
7070ALinen wool
7071ALinen wool
7073AGlass wool
Home Speakers
G Series Active SpeakersDamping material type
G OnePES
G TwoPES
G ThreePES
G FourPES
G FivePES
F Series Active SubwoofersDamping material type
F OneNone
F TwoPES
Home Theater Speaker SeriesDamping material type
HT210BLinen wool
HT312BGlass wool
HT315BGlass wool
HT320BCGlass wool
HT324AGlass wool
HT324ACGlass wool
HT330AGlass wool
Home Theater Subwoofer SeriesDamping material type
HTS3BNone
HTS4BNone
HTS6Glass wool
Installation Speakers
4000 Series Installation SpeakersDamping material type
4010APES
4020BPES
4020CPES
4030BPES
4030CPES
4040APES
Architectural Speaker SeriesDamping material type
AIC25PES
AIW25PES
AIW26Linen Wool
AIW26BLinen Wool
AOW312Glass wool
5041ALinen Wool