FrontISTR 5.2.0
Large-scale structural analysis program with finit element method
Loading...
Searching...
No Matches
hecmw_io_nastran_dummy.c
Go to the documentation of this file.
1/*****************************************************************************
2 * Copyright (c) 2019 FrontISTR Commons
3 * This software is released under the MIT License, see LICENSE.txt
4 *****************************************************************************/
5
6/* JP-0 */
7
8#include <stdio.h>
9#include <stdlib.h>
10#include <stdarg.h>
11#include <errno.h>
12#include "hecmw_util.h"
13#include "hecmw_io_mesh.h"
14#include "hecmw_io_struct.h"
15#include "hecmw_struct.h"
16#include "hecmw_config.h"
17#include "hecmw_system.h"
18#include "hecmw_dist.h"
19#include "hecmw_dist_print.h"
20#include "hecmw_common.h"
21#include "hecmw_path.h"
22#include "hecmw_conn_conv.h"
23#include "hecmw_io_nastran.h"
24
25/* DUMMY */
26int HECMW_read_nastran_mesh(const char *filename) {
27 fprintf(stdout,
28 "##FATAL : HEC-MW IO ERROR : Nastran data is not supported\n");
29 fflush(stdout);
31 return -1;
32}
33
34struct hecmwST_local_mesh *HECMW_get_nastran_mesh(const char *filename) {
35 fprintf(stdout,
36 "##FATAL : HEC-MW IO ERROR : Nastran data is not supported\n");
37 fflush(stdout);
39 return NULL;
40}
HECMW_Comm HECMW_comm_get_comm(void)
Definition: hecmw_comm.c:699
#define NULL
struct hecmwST_local_mesh * HECMW_get_nastran_mesh(const char *filename)
int HECMW_read_nastran_mesh(const char *filename)
void HECMW_abort(HECMW_Comm comm)
Definition: hecmw_util.c:88