🚀 Auto-deploy: BrainWind atualizado em 14/07/2026 18:03:29

This commit is contained in:
2026-07-14 18:03:29 +00:00
parent 5e44f1a0bd
commit 0755a56702
20 changed files with 597 additions and 263 deletions
+150 -37
View File
@@ -1,26 +1,38 @@
import { Document, Page, Text, View, StyleSheet, Image as PdfImage, pdf } from '@react-pdf/renderer';
import { Document, Page, Text, View, StyleSheet, Image as PdfImage, pdf, Font, Svg, Path } from '@react-pdf/renderer';
import { useWindStore } from '../store/appStore';
import { useCaptureStore } from '../store/captureStore';
// Registrar fonte Roboto com suporte Unicode completo (subscripts, grego, etc.)
Font.register({
family: 'Roboto',
fonts: [
{ src: 'https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.ttf' },
{ src: 'https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1Mu4mxMyIFYW8YR8w.ttf', fontWeight: 'bold' },
{ src: 'https://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xIIzc.ttf', fontStyle: 'italic' },
],
});
const styles = StyleSheet.create({
page: { flexDirection: 'column', padding: 40, fontSize: 10, fontFamily: 'Helvetica', color: '#333' },
header: { marginBottom: 20, borderBottom: '2pt solid #6b21a8', paddingBottom: 10 },
title: { fontSize: 20, fontWeight: 'bold', color: '#6b21a8' },
subtitle: { fontSize: 10, color: '#666', marginTop: 4 },
section: { marginTop: 15, marginBottom: 10 },
sectionTitle: { fontSize: 14, fontWeight: 'bold', marginBottom: 8, color: '#111' },
row: { flexDirection: 'row', marginBottom: 4 },
label: { width: 200, fontWeight: 'bold' },
value: { flex: 1 },
text: { fontSize: 10, marginBottom: 4, lineHeight: 1.4 },
table: { display: 'flex', flexDirection: 'column', marginTop: 10, borderTop: '1pt solid #ccc', borderLeft: '1pt solid #ccc' },
page: { flexDirection: 'column', padding: 40, fontSize: 9, fontFamily: 'Roboto', color: '#334155' },
header: { marginBottom: 15, borderBottom: '1.5pt solid #6b21a8', paddingBottom: 8, flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center' },
title: { fontSize: 16, fontWeight: 'bold', color: '#6b21a8', textAlign: 'right' },
subtitle: { fontSize: 9, color: '#64748b', marginTop: 3, textAlign: 'right' },
section: { marginTop: 12, marginBottom: 8 },
sectionTitle: { fontSize: 11, fontWeight: 'bold', marginBottom: 6, color: '#4c1d95', borderBottom: '0.5pt solid #e2e8f0', paddingBottom: 2 },
row: { flexDirection: 'row', marginBottom: 3 },
label: { width: 180, fontWeight: 'bold', color: '#475569' },
value: { flex: 1, color: '#1e293b' },
text: { fontSize: 9, marginBottom: 3, lineHeight: 1.3, color: '#334155' },
table: { display: 'flex', flexDirection: 'column', marginTop: 8, borderTop: '0.5pt solid #cbd5e1', borderLeft: '0.5pt solid #cbd5e1' },
tableRow: { flexDirection: 'row' },
tableHeader: { backgroundColor: '#f3f4f6', fontWeight: 'bold' },
tableCell: { flex: 1, padding: 5, borderRight: '1pt solid #ccc', borderBottom: '1pt solid #ccc', textAlign: 'center' },
tableCellFirst: { flex: 1, padding: 5, borderRight: '1pt solid #ccc', borderBottom: '1pt solid #ccc', textAlign: 'left' },
footer: { position: 'absolute', bottom: 30, left: 40, right: 40, textAlign: 'center', color: '#999', fontSize: 8, borderTop: '1pt solid #eaeaea', paddingTop: 10 },
sceneImage: { width: 480, height: 270, objectFit: 'contain', marginVertical: 8, border: '1pt solid #ddd' },
sceneCaption: { fontSize: 8, color: '#666', fontStyle: 'italic', textAlign: 'center', marginBottom: 8 },
tableHeader: { backgroundColor: '#f8fafc', fontWeight: 'bold' },
tableCell: { flex: 1, padding: 4, borderRight: '0.5pt solid #cbd5e1', borderBottom: '0.5pt solid #cbd5e1', textAlign: 'center', fontSize: 8 },
tableCellFirst: { flex: 1, padding: 4, borderRight: '0.5pt solid #cbd5e1', borderBottom: '0.5pt solid #cbd5e1', textAlign: 'left', fontSize: 8 },
footer: { position: 'absolute', bottom: 30, left: 40, right: 40, borderTop: '0.5pt solid #cbd5e1', paddingTop: 6 },
sceneImage: { width: 480, height: 250, objectFit: 'contain', marginVertical: 6, border: '0.5pt solid #e2e8f0', borderRadius: 4 },
sceneCaption: { fontSize: 7, color: '#64748b', fontStyle: 'italic', textAlign: 'center', marginBottom: 6 },
mathCard: { marginTop: 8, padding: 8, backgroundColor: '#f8fafc', borderLeft: '2.5pt solid #6b21a8', borderRadius: 2 },
recCard: { marginTop: 8, padding: 8, backgroundColor: '#faf5ff', borderLeft: '2.5pt solid #a855f7', borderRadius: 2 },
});
export function appendKgf(val: string | number): string {
@@ -57,17 +69,85 @@ export interface GenericPDFProps {
sceneImage?: string | null;
}
function generateRecommendations(moduleName: string, sections: GenericPDFSection[], wind: any): string[] {
const recs: string[] = [];
let hasSuction = false;
let forceValue = 0;
for (const sec of sections) {
if (sec.gridItems) {
for (const item of sec.gridItems) {
const labelLower = item.label.toLowerCase();
if (labelLower.includes('vertical') || labelLower.includes('fy') || labelLower.includes('força vertical')) {
const valStr = String(item.value);
const valNum = parseFloat(valStr.replace(/[^\d.-]/g, ''));
if (!isNaN(valNum)) {
if (valNum > 0 || labelLower.includes('arrancamento') || labelLower.includes('sucção')) {
hasSuction = true;
forceValue = Math.max(forceValue, Math.abs(valNum));
}
}
}
}
}
}
const nameLower = moduleName.toLowerCase();
if (nameLower.includes('cobertura') || nameLower.includes('isolada')) {
recs.push("Para coberturas isoladas, o vento gera sucções severas de arrancamento nas bordas. Verifique criteriosamente o dimensionamento e ancoragem das terças.");
if (hasSuction && forceValue > 20) {
recs.push(`A força de arrancamento vertical calculada (${forceValue.toFixed(1)} kN) exige detalhamento especial de fundação resistente a tração.`);
}
} else if (nameLower.includes('torre') || nameLower.includes('reticulada')) {
recs.push("Torres reticuladas sofrem grandes forças de arrasto. Certifique-se de que a esbeltez local atende aos limites regulamentares e verifique a fadiga nas conexões.");
} else if (nameLower.includes('muro') || nameLower.includes('placa') || nameLower.includes('sign')) {
recs.push("Em painéis e muros, o momento de tombamento na fundação é crítico. Recomenda-se adotar coeficiente de segurança mínimo de 1,5 contra tombamento.");
} else if (nameLower.includes('ponte') || nameLower.includes('tabuleiro')) {
recs.push("Pontes de grandes vãos são susceptíveis a oscilações aeroelásticas (Flutter/Galloping). Caso a velocidade crítica de flutter seja próxima à de projeto, execute ensaios aerodinâmicos complementares.");
} else if (nameLower.includes('dinâ') || nameLower.includes('dinamica') || nameLower.includes('vórtice')) {
recs.push("Estruturas esbeltas com frequência natural inferior a 1,0 Hz devem obrigatoriamente ser analisadas sob efeito de oscilação dinâmica.");
} else if (nameLower.includes('cilindro') || nameLower.includes('chaminé')) {
recs.push("Cilindros e reservatórios estão expostos a picos locais de pressão e flambagem da chapa. Anéis de rigidez superiores são altamente sugeridos.");
} else if (nameLower.includes('abóbada') || nameLower.includes('cúpula') || nameLower.includes('vault') || nameLower.includes('dome')) {
recs.push("Estruturas curvas apresentam zonas de transição com forte gradiente de pressões. Cuidado redobrado no cálculo das pressões tangenciais locais.");
}
if (wind.vk > 45) {
recs.push(`A velocidade característica encontrada (${wind.vk.toFixed(1)} m/s) é elevada. É sugerido rígido controle de deslocamentos laterais na estrutura.`);
}
recs.push("O memorial serve como suporte ao projetista estrutural, cabendo ao Engenheiro Responsável Técnico (RT) a aprovação final dos esforços de dimensionamento.");
return recs;
}
const GenericReportDocument = ({ moduleName, sections, wind, sceneImage }: GenericPDFProps) => {
const recommendations = generateRecommendations(moduleName, sections, wind);
return (
<Document>
<Page size="A4" style={styles.page}>
{/* Cabeçalho com Logotipo customizado ou placeholder */}
<View style={styles.header}>
<Text style={styles.title}>BrainWind v1.0 Memória de Cálculo</Text>
<Text style={styles.subtitle}>Cargas de Vento: {moduleName} NBR 6123:2023</Text>
{wind.companyLogo ? (
<PdfImage src={wind.companyLogo} style={{ width: 110, height: 40, objectFit: 'contain' }} />
) : (
<View style={{ width: 110, height: 40, border: '0.75pt dashed #cbd5e1', borderRadius: 2, justifyContent: 'center', alignItems: 'center' }}>
<Text style={{ fontSize: 7, color: '#94a3b8' }}>Logotipo Empresa</Text>
</View>
)}
<View style={{ flex: 1, marginLeft: 15 }}>
<Text style={styles.title}>BrainWind v1.0 Memória de Cálculo</Text>
<Text style={styles.subtitle}>Módulo: {moduleName} ABNT NBR 6123:2023</Text>
</View>
</View>
{/* 1. Parâmetros Globais do Vento */}
<View style={styles.section}>
<Text style={styles.sectionTitle}>1. Parâmetros Globais do Vento e Pressão Dinâmica</Text>
<View style={styles.row}>
<Text style={styles.label}>Localidade de Projeto:</Text>
<Text style={styles.value}>{wind.locality || 'V₀ generalizado'}</Text>
</View>
<View style={styles.row}>
<Text style={styles.label}>Velocidade Básica (V):</Text>
<Text style={styles.value}>{wind.v0} m/s (conforme Figura 1 e Anexo C da NBR 6123)</Text>
@@ -85,19 +165,20 @@ const GenericReportDocument = ({ moduleName, sections, wind, sceneImage }: Gener
<Text style={styles.value}>{wind.s3.toFixed(2)} (Grupo {wind.s3Group}, conforme Tabela 4)</Text>
</View>
<View style={{ marginTop: 10, padding: 8, backgroundColor: '#f9fafb', borderLeft: '3pt solid #6b21a8' }}>
<Text style={{ fontSize: 11, fontWeight: 'bold', marginBottom: 4 }}>Memória de Cálculo (Sec 4.2 e 4.3):</Text>
<Text style={{ fontSize: 10, fontFamily: 'Courier', marginBottom: 4 }}>
<View style={styles.mathCard}>
<Text style={{ fontSize: 10, fontWeight: 'bold', marginBottom: 3, color: '#1e1b4b' }}>
Formulações de Velocidade e Pressão (Sec. 4.2 e 4.3):
</Text>
<Text style={{ fontSize: 9, fontFamily: 'Courier', marginBottom: 2 }}>
Vₖ = V × S × S × S
</Text>
<Text style={{ fontSize: 10, fontFamily: 'Courier', marginBottom: 8, color: '#4b5563' }}>
<Text style={{ fontSize: 9, fontFamily: 'Courier', marginBottom: 6, color: '#475569' }}>
Vₖ = {wind.v0} × {wind.s1} × {wind.s2.toFixed(3)} × {wind.s3.toFixed(2)} = {wind.vk.toFixed(2)} m/s
</Text>
<Text style={{ fontSize: 10, fontFamily: 'Courier', marginBottom: 4 }}>
<Text style={{ fontSize: 9, fontFamily: 'Courier', marginBottom: 2 }}>
q = 0,613 × (Vₖ)²
</Text>
<Text style={{ fontSize: 10, fontFamily: 'Courier', color: '#4b5563' }}>
<Text style={{ fontSize: 9, fontFamily: 'Courier', color: '#475569' }}>
{appendKgf(`q = 0,613 × (${wind.vk.toFixed(2)})² = ${(0.613 * Math.pow(wind.vk, 2) / 1000).toFixed(4)} kN/m²`)}
</Text>
</View>
@@ -108,7 +189,7 @@ const GenericReportDocument = ({ moduleName, sections, wind, sceneImage }: Gener
<Text style={styles.sectionTitle}>2. Modelo 3D (Captura de Cena)</Text>
<PdfImage src={sceneImage} style={styles.sceneImage} />
<Text style={styles.sceneCaption}>
Vista isométrica capturada em tempo real pelo usuário.
Vista isométrica em tempo real capturada pelo usuário na interface.
</Text>
</View>
)}
@@ -124,12 +205,14 @@ const GenericReportDocument = ({ moduleName, sections, wind, sceneImage }: Gener
)}
{sec.type === 'grid' && sec.gridItems && (
sec.gridItems.map((item, i) => (
<View style={styles.row} key={i}>
<Text style={styles.label}>{item.label}:</Text>
<Text style={styles.value}>{appendKgf(item.value)}</Text>
</View>
))
<View style={{ flexDirection: 'row', flexWrap: 'wrap' }}>
{sec.gridItems.map((item, i) => (
<View style={{ width: '50%', marginBottom: 4 }} key={i}>
<Text style={{ fontWeight: 'bold', color: '#475569' }}>{item.label}:</Text>
<Text style={{ color: '#1e293b' }}>{appendKgf(item.value)}</Text>
</View>
))}
</View>
)}
{sec.type === 'table' && sec.tableHeaders && sec.tableRows && (
@@ -155,9 +238,39 @@ const GenericReportDocument = ({ moduleName, sections, wind, sceneImage }: Gener
</View>
))}
<Text style={styles.footer}>
Gerado por BrainWind v1.0 Ferramenta de Auxílio ao Cálculo Estrutural (NBR 6123:2023)
</Text>
{/* 6. Parecer Técnico e Considerações */}
<View style={styles.section} wrap={false}>
<Text style={styles.sectionTitle}>
{sceneImage ? sections.length + 3 : sections.length + 2}. Parecer Técnico e Observações
</Text>
<View style={styles.recCard}>
{recommendations.map((rec, rIdx) => (
<Text style={{ fontSize: 9, marginBottom: 4, lineHeight: 1.3, color: '#3b0764' }} key={rIdx}>
{rec}
</Text>
))}
</View>
</View>
{/* Rodapé fixo */}
<View style={styles.footer} fixed>
<View style={{ flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center' }}>
<Text style={{ fontSize: 6.5, color: '#94a3b8', flex: 1, textAlign: 'left' }}>
Legendas: V: Vel. básica | S, S, S: Fatores de vento | Vₖ: Vel. de projeto | q: Pressão dinâmica | Cpe: Pressão externa | Cpi: Pressão interna
</Text>
<Text style={{ fontSize: 7, color: '#64748b', textAlign: 'center', marginHorizontal: 10 }} render={({ pageNumber, totalPages }) => (
`Pág. ${pageNumber} de ${totalPages}`
)} />
<View style={{ flexDirection: 'row', alignItems: 'center', justifyContent: 'flex-end', flex: 0.3 }}>
<Svg width="8" height="8" viewBox="0 0 24 24" fill="none" stroke="#6b21a8" strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" style={{ marginRight: 2 }}>
<Path d="M12.8 19.6A2 2 0 1 0 14 16H2" />
<Path d="M17.5 8a2.5 2.5 0 1 1 2 4H2" />
<Path d="M9.8 4.4A2 2 0 1 1 11 8H2" />
</Svg>
<Text style={{ fontSize: 7, fontWeight: 'bold', color: '#6b21a8' }}>BrainWind</Text>
</View>
</View>
</View>
</Page>
</Document>
);